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 wo.tomasz
import math
def greatest_common_divisor(*args:int) -> int:
gr = math.gcd(args[0], args[1])
for idx in range(2, len(args)):
gr = math.gcd(gr, args[idx])
return gr
if __name__ == '__main__':
print("Example:")
print(greatest_common_divisor(6, 4))
# These "asserts" are used for self-checking and not for an auto-testing
assert greatest_common_divisor(6, 4) == 2
assert greatest_common_divisor(2, 4, 8) == 2
assert greatest_common_divisor(2, 3, 5, 7, 11) == 1
assert greatest_common_divisor(3, 9, 3, 9) == 3
print("Coding complete? Click 'Check' to earn cool rewards!")
Dec. 25, 2020