day1/exercise/gcd.py
author Christopher Burns <chris.d.burns@gmail.com>
Tue, 22 Jun 2010 00:00:54 -0700
branchscipy2010
changeset 421 47427c8d64fe
parent 64 333092b68926
child 428 ee689f7c3122
permissions -rw-r--r--
Added breaks to plan so I could think though the timing when drafting the summary.

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

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