Cooking
Search...
Ctrl
K
Coding Notes
Template
Math
Copy
int
gcd
(
int
a
,
int
b ) {
return
b
?
gcd
( b
,
a
%
b )
:
a ;
}
Previous
Sieve of Eratosthenes
Next
BFS
Last updated
3 years ago