MCPcopy Create free account
hub / github.com/E869120/math-algorithm-book / Code_3_06_4.py

File Code_3_06_4.py

codes/python/Code_3_06_4.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def GCD(A, B):
2 if B == 0:
3 return A # ベースケース
4 return GCD(B, A % B)

Callers

nothing calls this directly

Calls 1

GCDFunction · 0.70

Tested by

no test coverage detected