day1/exercise/gcd.py
author Christopher Burns <chris.d.burns@gmail.com>
Tue, 29 Jun 2010 01:40:24 -0500
branchscipy2010
changeset 434 99e1af343b04
parent 428 ee689f7c3122
permissions -rw-r--r--
DOC: More slides on whitespace.

def gcd(a, b):
    if a % b == 0:
        return b
    return gcd(b, a%b)

print gcd(5, 40)
print gcd(11, 60)