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

6 lines
106 B
Python

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