dc969c5
0562662
@@ -0,0 +1,9 @@ +require 'pp' + +def gcd(p, q) + return p if q == 0 + gcd(q, p % q) +end + + +fail unless gcd(1440, 408) == 24