day1/exercise/gcd.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 28 Oct 2009 20:32:52 +0530
changeset 250 760d5679834e
parent 64 333092b68926
child 428 ee689f7c3122
permissions -rw-r--r--
Fixed typos and hanging words in Session 1 day 2.

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

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