Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The Greatest Common Divisor by vvm70
def greatest_common_divisor(*args):
r = args[0]
for a in args[1:]:
while a % r:
a, r = r, a % r
return r
print(greatest_common_divisor(3, 9, 3, 9))
print(greatest_common_divisor(273, 105))
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert greatest_common_divisor(6, 4) == 2, "Simple"
assert greatest_common_divisor(2, 4, 8) == 2, "Three arguments"
assert greatest_common_divisor(2, 3, 5, 7, 11) == 1, "Prime numbers"
assert greatest_common_divisor(3, 9, 3, 9) == 3, "Repeating arguments"
Jan. 12, 2021