[Client] 良い感じに
This commit is contained in:
parent
d7a16d7ab1
commit
35bc0c024f
7 changed files with 230 additions and 15 deletions
2
src/web/app/common/scripts/gcd.js
Normal file
2
src/web/app/common/scripts/gcd.js
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
||||
module.exports = gcd;
|
||||
Loading…
Add table
Add a link
Reference in a new issue