day1/exercise/gcd.py
author Shantanu <shantanu@fossee.in>
Thu, 19 Nov 2009 11:04:11 +0530
changeset 316 6108f2007151
parent 64 333092b68926
child 428 ee689f7c3122
permissions -rw-r--r--
Modified cheat sheet of session 4 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)