summaryrefslogtreecommitdiff
path: root/progs/a86.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a86.py')
-rw-r--r--progs/a86.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/progs/a86.py b/progs/a86.py
new file mode 100644
index 0000000..7dedf3c
--- /dev/null
+++ b/progs/a86.py
@@ -0,0 +1,9 @@
+def recur_gcd(a, b):
+ low = min(a, b)
+ high = max(a, b)
+ if low == 0:
+ return high
+ elif low == 1:
+ return 1
+ else:
+ return recur_gcd(low, high%low) \ No newline at end of file