diff --git a/epi_judge_python/collatz_checker.py b/epi_judge_python/collatz_checker.py index 9e878cebb..58c4936dd 100644 --- a/epi_judge_python/collatz_checker.py +++ b/epi_judge_python/collatz_checker.py @@ -1,7 +1,7 @@ from test_framework import generic_test -def test_collatz_conjecture(n: int) -> bool: +def collatz_conjecture(n: int) -> bool: # TODO - you fill in here. return False @@ -10,4 +10,4 @@ def test_collatz_conjecture(n: int) -> bool: exit( generic_test.generic_test_main('collatz_checker.py', 'collatz_checker.tsv', - test_collatz_conjecture)) + collatz_conjecture))