def gcd_another()
in
gcd.py [0:0]
7
lines of code
2
McCabe index (conditional complexity)
def gcd_another(a, b): c = a % b while c != 0: a = b b = c c = a % b return b