Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/cp-algorithms/cp-algorithms
/ gcd
Function
gcd
test/test_extended_gcd.cpp:16–18 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
14
15
namespace std {
16
int gcd(int a, int b) {
17
return b ? gcd(b, a % b) : a;
18
}
19
}
20
21
int main() {
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected