Skip to content

Instantly share code, notes, and snippets.

@Richienb
Last active June 7, 2020 02:55
Show Gist options
  • Save Richienb/869884e19c8257fe6d274acd0aceaa17 to your computer and use it in GitHub Desktop.
Save Richienb/869884e19c8257fe6d274acd0aceaa17 to your computer and use it in GitHub Desktop.
GCD
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