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