Skip to content

Instantly share code, notes, and snippets.

@TravisMullen
Created August 1, 2017 21:46
Show Gist options
  • Save TravisMullen/32d2d5b2a3dcfe6b49e02b8e281cf091 to your computer and use it in GitHub Desktop.
Save TravisMullen/32d2d5b2a3dcfe6b49e02b8e281cf091 to your computer and use it in GitHub Desktop.
greatest common denom
export function getGCD (a, b) {
for (let c; b; a = b, b = c) {
c = a % b
}
return a
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment