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, 0 insertions, 21 deletions
diff --git a/ee2301/collatz.py b/ee2301/collatz.py
deleted file mode 100644
index 14873be..0000000
--- a/ee2301/collatz.py
+++ /dev/null
@@ -1,21 +0,0 @@
-def collatzCount(number):
- for n in range (1,number+1):
- collatzConjecture(n)
- #print("\n")
-
-def collatzConjecture(n):
- #print(n, end = ' ')
- if n is 1:
- return 1
- else:
- if n%2:
- return collatzConjecture(int((n*3)+1))
- else:
- return collatzConjecture(int(n/2))
- raise AssertionError
-
-
-try:
- collatzCount(10000)
-except AssertionError:
- print("The Collatz Conjecture is false!")