This website requires JavaScript.
Explore
Help
Sign In
mirror
/
iceshrimp
Watch
1
Star
0
Fork
0
You've already forked iceshrimp
mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced
2025-01-02 11:42:51 +09:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
fe94ef20b0
iceshrimp
/
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