day1/exercise/collatz.py
author Shantanu <shantanu@fossee.in>
Thu, 08 Oct 2009 23:16:13 +0530
changeset 76 b24c2560f626
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
Added links.tex, compilation of various links.

a = -1
while a > 1:
    print a
    if a % 2:
        a = a * 3 + 1
    else:
        a /= 2