Answers for "gcd python"

1

gcd python

def gcd(a, b):	# using Euclid's Algorithm
    while b:
        a, b = b, a % b
    return max(a, -a)
Posted by: Guest on October-30-2021
2

python how to find gcd

>>> import math
>>> math.gcd(9, 12)
3
Posted by: Guest on September-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language