day1/exercise/collatz.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 14 Oct 2009 12:43:21 +0530
changeset 112 24992ab48f2b
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
Created the pristine form of the repository for Goa workshop.

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