Skip to content

Instantly share code, notes, and snippets.

@VxDxK
Created September 4, 2020 16:43
Show Gist options
  • Save VxDxK/868035fd1659193ee8a7a9f3aa93d765 to your computer and use it in GitHub Desktop.
Save VxDxK/868035fd1659193ee8a7a9f3aa93d765 to your computer and use it in GitHub Desktop.
int gcd (int a, int b) {
while (b) {
a %= b;
swap (a, b);
}
return a;
}
int lcm (int a, int b) {
return a / gcd (a, b) * b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment