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 @@
heads = 8188
coup = 0
while heads > 0:
coup = coup + 1
heads = heads // 2
if heads%2 != 0 and heads > 1:
heads = heads * 3 + 1
print(coup)