summaryrefslogtreecommitdiff
path: root/progs/a408.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a408.py')
-rw-r--r--progs/a408.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/progs/a408.py b/progs/a408.py
new file mode 100644
index 0000000..69e579a
--- /dev/null
+++ b/progs/a408.py
@@ -0,0 +1,11 @@
+def find_gcd(x, y):
+ while(y):
+ x, y = y, x % y
+ return x
+def get_gcd(l):
+ num1 = l[0]
+ num2 = l[1]
+ gcd = find_gcd(num1, num2)
+ for i in range(2, len(l)):
+ gcd = find_gcd(gcd, l[i])
+ return gcd \ No newline at end of file