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

12
Entrée au Ministère.py Normal file
View File

@@ -0,0 +1,12 @@
start = 64224
value = start
ctr = 0
while ctr < 4:
carre = str(value**2)
if all(item in carre for item in ["1", "2", "4", "6", "7"]):
if not any(item in carre for item in ["0", "3", "5", "8", "9"]):
print(value, end=", ")
ctr += 1
value += 1