day1/exercise/gcd.py
author Christopher Burns <chris.d.burns@gmail.com>
Mon, 28 Jun 2010 23:17:31 -0500
branchscipy2010
changeset 428 ee689f7c3122
parent 64 333092b68926
permissions -rw-r--r--
REF: Minor formatting tweaks in exercise solutions.

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

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