diff options
Diffstat (limited to 'testing_and_debugging/gcd.py')
-rw-r--r-- | testing_and_debugging/gcd.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/testing_and_debugging/gcd.py b/testing_and_debugging/gcd.py index b8d1296..5bc9110 100644 --- a/testing_and_debugging/gcd.py +++ b/testing_and_debugging/gcd.py @@ -1,10 +1,11 @@ def gcd(a, b): - if b == 0: - return a + if a%b==0: + return a return gcd(b, a%b) -if __name__ == '__main__': - result = gcd(48, 64) - if result != 16: - print "Test failed" - print "Test Passed" +#if __name__ == '__main__': +# result = gcd(48, 64) +# if result != 16: +# print "Test failed" +# print "Test Passed" + |