day1/exercise/gcd_another.py
author Christopher Burns <chris.d.burns@gmail.com>
Tue, 29 Jun 2010 01:17:52 -0500
branchscipy2010
changeset 433 af45c8da1d5d
parent 64 333092b68926
permissions -rw-r--r--
DOC: Add comments about python style.

def gcd(a, b):
  if a - b == 0:
    return b
  if a > b:
    return gcd(b, a-b)
  else:
    return gcd(b, b-a)

def lcm(a, b):
    return (a * b) / gcd(a, b)

print lcm(21, 14)