day1/exercise/gcd.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 14 Oct 2009 20:40:35 +0530
changeset 120 055b199c46c2
parent 64 333092b68926
child 428 ee689f7c3122
permissions -rw-r--r--
Added NumPy array operations to session3 day1 for sslc1.txt.

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

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