This website requires JavaScript.
Explore
Help
Sign in
Mizah
/
Sharkey
Watch
1
Star
0
Fork
You've already forked Sharkey
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
f8dddc81e2
Sharkey
/
src
/
web
/
app
/
common
/
scripts
/
gcd.js
3 lines
66 B
JavaScript
Raw
Normal View
History
Unescape
Escape
[Client] 良い感じに
2017-02-16 17:20:45 +09:00
const
gcd
=
(
a
,
b
)
=>
!
b
?
a
:
gcd
(
b
,
a
%
b
)
;
:sushi: Closes #12, #227 and #58
2017-03-18 20:05:11 +09:00
export
default
gcd
;
Reference in a new issue
Copy permalink