csc-python-solutions/16/6 - Hailstone
2021-02-17 13:01:44 +01:00

6 lines
106 B
Plaintext

def hailstone(n):
print(n)
if n != 1:
if n%2: hailstone(3*n+1)
else: hailstone(n//2)