Last active
June 7, 2020 02:55
-
-
Save Richienb/869884e19c8257fe6d274acd0aceaa17 to your computer and use it in GitHub Desktop.
GCD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const gcd = (a, b) => { | |
if (typeof a !== "number") { | |
throw new TypeError(`Expected number, got ${typeof a}`) | |
} | |
if (typeof b !== "number") { | |
throw new TypeError(`Expected number, got ${typeof b}`) | |
} | |
if (b === 0) { | |
return a | |
} | |
return gcd(b, a % b) | |
} | |
module.exports = input => { | |
if (!Array.isArray(input)) { | |
throw new TypeError(`Expected an array of numbers, got ${typeof input}`) | |
} | |
if (input.length === 0) { | |
return NaN | |
} | |
return input.reduce((previousValue, currentValue) => gcd(previousValue, currentValue)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment