Initial release

This commit is contained in:
Francois JUMELLE
2021-05-03 22:32:40 +02:00
commit 20526d93c8
928 changed files with 452368 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
for i in range(1,4,2):
for j in range(i+2,6,2):
for k in range(j+2,8,2):
for l in range(k+2,10,2):
p = str(i*j*k*l)
if p.replace("1", "").replace("3", "").replace("5", "").replace("7", "").replace("9", "") == "":
s = str(i+j+k+l)
if s.replace("0", "").replace("2", "").replace("4", "").replace("6", "").replace("8", "") == "":
print(i,j,k,l)