Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
def
GCD(A, B):
2
if
B == 0:
3
return
A
# ベースケース
4
return
GCD(B, A % B)
Callers
nothing calls this directly
Calls
1
GCD
Function · 0.70
Tested by
no test coverage detected