Mercurial
Mercurial
>
workshops
/ file revision
summary
|
shortlog
|
changelog
|
graph
|
tags
|
bookmarks
|
branches
|
files
|
changeset
| file |
latest
|
revisions
|
annotate
|
diff
|
comparison
|
raw
|
help
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
day1/exercise/collatz.py
author
Puneeth Chaganti <punchagan@fossee.in>
Thu, 29 Oct 2009 00:39:33 +0530
changeset 259
bb77a470e00a
parent 64
333092b68926
child 354
5dc6c3673f9d
permissions
-rw-r--r--
Added loadtxt section to Day1 Session5.
a = -1
while a > 1:
print a
if a % 2:
a = a * 3 + 1
else:
a /= 2