day1/exercise/gcd.py
author Shantanu <shantanu@fossee.in>
Wed, 28 Oct 2009 15:17:39 +0530
changeset 220 15306dad3b81
parent 64 333092b68926
child 428 ee689f7c3122
permissions -rw-r--r--
Corrections to day1 Session1, day2 Session 3 and 4.

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

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