up vote 0 down vote favorite
share [g+] share [fb]

If you have a list of integers in python, say L = [4,8,12,24], how can you compute their greatest common denominator/divisor (4 in this case)?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

One way to do it is:

import fractions

def gcd(L):
    return reduce(fractions.gcd, L)

print gcd([4,8,12,24])
link|improve this answer
+1 elegant self answer. – msw Sep 4 '10 at 5:02
1  
First line should read import fractions. – Etaoin Sep 4 '10 at 5:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.