This website requires JavaScript.
Explore
Help
Sign In
mirror
/
misskey
Watch
1
Star
0
Fork
0
You've already forked misskey
mirror of
https://github.com/misskey-dev/misskey
synced
2024-12-26 20:48:30 +09:00
Code
cd2542e0fd
misskey
/
src
/
client
/
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
;
Copy Permalink