Pages

Sponsorship

40% off your First Order with GoDaddy.com!

Dec 19, 2009

Python: Find the Greatest Common Divisor


Implement the Euclidean algorithm into a Python function in order to calculate the largest common divisor of two numbers.

def euclid(numA, numB):
while numB != 0:
numRem = numA % numB
numA = numB
numB = numRem
return numA
view raw euclid.py hosted with ❤ by GitHub

No comments:

Post a Comment