MCPcopy 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
15namespace std {
16int gcd(int a, int b) {
17 return b ? gcd(b, a % b) : a;
18}
19}
20
21int main() {

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected