Files
30-seconds-of-code/test/gcd/gcd.js

5 lines
144 B
JavaScript

const gcd = (...arr) => {
const _gcd = (x, y) => (!y ? x : gcd(y, x % y));
return [...arr].reduce((a, b) => _gcd(a, b));
};
module.exports = gcd