Tagged Questions
2
votes
2answers
51 views
How can you create a unique key for two interchangable integers?
I am trying to write a simple caching mechanism for Euclid's method of finding the GCD of two numbers:
gcd(a,0) = a
gcd(a,b) = gcd(b, a % b)
Note that gcd(a,b) == gcd(b,a).
For the cache, I need ...