Skip to content

Instantly share code, notes, and snippets.

@crisberrios
Created March 15, 2015 02:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crisberrios/9a0f5217aba6d00e3c8d to your computer and use it in GitHub Desktop.
Save crisberrios/9a0f5217aba6d00e3c8d to your computer and use it in GitHub Desktop.
GCD and lcm routines
var gcd = function (a,b){
if ( ! b) {
return a;
}
return gcd(b, a % b)
}
var lcm = function (i,j){
return (i*j)/gcd(i,j);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment