Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
sagemathinc
Edit Copy
Star
1
GitHub Repository:
sagemathinc/wapython
Path:
blob/main/python/bench/src/zig/nt.pyx
1
0
6
7
views
1
2
cdef
extern
int
gcd_impl
(
int
a
,
int
b
)
;
3
4
cpdef
int
gcd
(
int
a
,
int
b
)
:
5
return
gcd_impl
(
a
,
b
)
6