aboutsummaryrefslogtreecommitdiffstats
path: root/ee2301/collatz.py
diff options
context:
space:
mode:
Diffstat (limited to 'ee2301/collatz.py')
-rw-r--r--ee2301/collatz.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/ee2301/collatz.py b/ee2301/collatz.py
new file mode 100644
index 0000000..5f50ccc
--- /dev/null
+++ b/ee2301/collatz.py
@@ -0,0 +1,21 @@
+def collatzCount(k):
+ for n in range (1,k+1):
+ collatzConjecture(n)
+ print("\n")
+
+def collatzConjecture(n):
+ print(n, end = ' ')
+ if n is 1:
+ return 1
+ elif n > 1:
+ if n%2:
+ return collatzConjecture(int((n*3)+1))
+ else:
+ return collatzConjecture(int(n/2))
+ raise AssertionError
+
+
+try:
+ collatzCount(100000)
+except AssertionError:
+ print("The Collatz Conjecture is false!")