day1/exercise/gcd.py
author Shantanu <shantanu@fossee.in>
Wed, 28 Oct 2009 20:35:55 +0530
changeset 256 a06196a05043
parent 64 333092b68926
child 428 ee689f7c3122
permissions -rw-r--r--
Added interpolate and loadtxt section to session 5 day 1.

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

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