day1/exercise/collatz.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 28 Oct 2009 20:32:06 +0530
changeset 249 135062d6f91f
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
Fixed typos and hanging words in Session 3 day 1.

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