day1/exercise/collatz.py
author prabhu@localhost
Fri, 09 Oct 2009 22:57:00 +0530
changeset 93 27b67b50280b
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
ENH: Fixing compile errors and removing CDEEP.

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