This website requires JavaScript.
Explore
Help
Sign In
161sh
/
trashposs
Watch
1
Star
0
Fork
0
You've already forked trashposs
mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced
2024-11-25 02:09:05 +01:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
2d26269d99
trashposs
/
src
/
client
/
app
/
common
/
scripts
/
gcd.ts
3 lines
66 B
TypeScript
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 New Issue
Copy Permalink