6 lines
150 B
JavaScript
6 lines
150 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;
|