Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Batteries solution in Clear category for The Greatest Common Divisor by veky
import fractions, functools
greatest_common_divisor = lambda *arg: functools.reduce(fractions.gcd, arg, 0)
Aug. 27, 2014
Comments: