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