[Client] 良い感じに
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
||||
module.exports = gcd;
|
||||
Reference in New Issue
Block a user
@@ -0,0 +1,2 @@
|
||||
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
||||
module.exports = gcd;
|
||||