Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Greatest Common Divisor by s_o_va
import math
from functools import reduce
greatest_common_divisor = lambda *args: reduce(math.gcd, args)
Oct. 30, 2018