diff options
Diffstat (limited to 'OLD/ee2301/collatz.py')
-rw-r--r-- | OLD/ee2301/collatz.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/OLD/ee2301/collatz.py b/OLD/ee2301/collatz.py new file mode 100644 index 0000000..14873be --- /dev/null +++ b/OLD/ee2301/collatz.py @@ -0,0 +1,21 @@ +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!") |