day1/exercise/collatz.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 28 Oct 2009 16:01:13 +0530
changeset 229 5541c47bc2e8
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
Added sections, subsections and time estimates for session 3 day 1.

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