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
Christopher Burns <chris.d.burns@gmail.com>
Tue, 29 Jun 2010 00:59:26 -0500
branch
scipy2010
changeset 432
13e5d0e2cd40
parent 428
ee689f7c3122
permissions
-rw-r--r--
DOC: Add more slides on testing
def gcd(a, b):
if a % b == 0:
return b
return gcd(b, a%b)
print gcd(5, 40)
print gcd(11, 60)