Skip to content

Instantly share code, notes, and snippets.

@swarajd
Created November 12, 2018 14:59
Show Gist options
  • Save swarajd/71ca80407d53c4e6fe452c82d53ed5be to your computer and use it in GitHub Desktop.
Save swarajd/71ca80407d53c4e6fe452c82d53ed5be to your computer and use it in GitHub Desktop.
const gcd = (a, b) => {
if (!b) {
return a;
}
return gcd(b, a % b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment