Skip to content

Instantly share code, notes, and snippets.

@tjunghans
Created September 1, 2015 06:17
Show Gist options
  • Save tjunghans/1b17ec1a28605681cdb0 to your computer and use it in GitHub Desktop.
Save tjunghans/1b17ec1a28605681cdb0 to your computer and use it in GitHub Desktop.
// https://de.wikipedia.org/wiki/Gr%C3%B6%C3%9Fter_gemeinsamer_Teiler
function gcd(a, b) {
return b === 0 ? a : gcd(b, a % b);
}
// https://de.wikipedia.org/wiki/Kleinstes_gemeinsames_Vielfaches
function lcd(a, b) {
return (a * b) / gcd(a, b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment