Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
kibibyte
on March 4, 2021
|
parent
|
context
|
favorite
| on:
It Can Happen to You
I think your indentation needs to be adjusted? Like so:
def collatz(n): while n != 1: print(n) if n % 2 == 0: n = n // 2 else: n = n * 3 + 1 print(1)
Otherwise, n = 1 terminates, and n != 1 gets stuck looping at lines 2-3.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search: