summaryrefslogtreecommitdiff
path: root/lecture_notes/source/test_driven_development/math_utils/gcd.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2014-06-16 22:04:14 +0530
committerPrabhu Ramachandran2014-06-16 22:04:14 +0530
commit84598f905d39d4e303cd50624e6807a28d158d01 (patch)
treefd9b645d539068da0cd8e28065ae682a85872376 /lecture_notes/source/test_driven_development/math_utils/gcd.py
parent1cd20420eaf6db98f985bb4ff9840dd0641d124b (diff)
parent2c4b7b56d88cf0ff86e033e82665220bbdec9617 (diff)
downloadsees-84598f905d39d4e303cd50624e6807a28d158d01.tar.gz
sees-84598f905d39d4e303cd50624e6807a28d158d01.tar.bz2
sees-84598f905d39d4e303cd50624e6807a28d158d01.zip
Merge pull request #3 from FOSSEE/sphinx-lecture_notes
changes in the directory so that it can be compiled by sphinx
Diffstat (limited to 'lecture_notes/source/test_driven_development/math_utils/gcd.py')
-rw-r--r--lecture_notes/source/test_driven_development/math_utils/gcd.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/lecture_notes/source/test_driven_development/math_utils/gcd.py b/lecture_notes/source/test_driven_development/math_utils/gcd.py
new file mode 100644
index 0000000..7204ac0
--- /dev/null
+++ b/lecture_notes/source/test_driven_development/math_utils/gcd.py
@@ -0,0 +1,22 @@
+def gcd(a, b):
+ """Returns the Greatest Common Divisor of the two integers
+ passed as arguments.
+
+ Args:
+ a: an integer
+ b: another integer
+
+ Returns: Greatest Common Divisor of a and b
+
+ >>> gcd(48, 64)
+ 16
+ >>> gcd(44, 19)
+ 1
+ """
+ if b == 0:
+ return b
+ return gcd(b, a%b)
+
+if __name__ == "__main__":
+ import doctest
+ doctest.testmod()