Created
October 31, 2025 09:13
-
-
Save harunorimurata/8f9fa96ffe21a1531a174218179ee9b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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