[Client] 良い感じに
This commit is contained in:
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;
|
Reference in New Issue
Block a user