This website requires JavaScript.
Explore
Help
Register
Sign In
amechama
/
sharkey
Watch
1
Star
0
Fork
0
You've already forked sharkey
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
37e5a9d06a
sharkey
/
src
/
web
/
app
/
common
/
scripts
/
gcd.ts
3 lines
66 B
TypeScript
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 New Issue
Copy Permalink