bars
Cooking
search
circle-xmark
⌘
Ctrl
k
copy
Copy
chevron-down
Coding Notes
chevron-right
Template
Math
Copy
int
gcd
(
int
a
,
int
b
)
{
return
b
?
gcd
(
b
,
a
%
b
)
:
a
;
}
Previous
Sieve of Eratosthenes
chevron-left
Next
BFS
chevron-right
Last updated
4 years ago