day1/exercise/collatz.py
author Puneeth Chaganti <punchagan@fossee.in>
Fri, 09 Oct 2009 11:13:37 +0530 (2009-10-09)
changeset 77 3cb7e25f7c0e
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
Edited Broadcasting slides.
a = -1
while a > 1:
    print a
    if a % 2:
        a = a * 3 + 1
    else:
        a /= 2