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/gcd.py
author
Shantanu <shantanu@fossee.in>
Fri, 20 Nov 2009 00:34:18 +0530
changeset 321
8bf99f747817
parent 64
333092b68926
child 428
ee689f7c3122
permissions
-rw-r--r--
Modified cheat sheet of session 1 day 2.
def gcd(a, b):
if a % b == 0:
return b
return gcd(b, a%b)
print gcd(5, 40)
print gcd(11, 60)