day1/exercise/collatz.py
author rivermaker@RivermakerMBP.local
Tue, 27 Oct 2009 16:05:37 +0530
changeset 192 1574b3bc6be7
parent 64 333092b68926
child 354 5dc6c3673f9d
permissions -rw-r--r--
Changed the focus of the statistics

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