Skip to content

Instantly share code, notes, and snippets.

@harunorimurata
Created October 31, 2025 09:13
Show Gist options
  • Save harunorimurata/8f9fa96ffe21a1531a174218179ee9b5 to your computer and use it in GitHub Desktop.
Save harunorimurata/8f9fa96ffe21a1531a174218179ee9b5 to your computer and use it in GitHub Desktop.
function gcd(m, n) { return n ? gcd(n, m % n) : m; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment