Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 19, 2019 17:10
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 parzibyte/8586faa6b3bb738bb561e80fa2362c84 to your computer and use it in GitHub Desktop.
Save parzibyte/8586faa6b3bb738bb561e80fa2362c84 to your computer and use it in GitHub Desktop.
int minimo_comun_multiplo(a, b) {
return (a * b) / maximo_comun_divisor(a, b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment