Files
30-seconds-of-code/test/gcd/gcd.js
2018-01-17 13:40:40 -05:00

5 lines
145 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