diff --git a/build.py b/build.py index 7a4c3b9..38cd4bf 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,10 @@ def solution(list_of_nums): - """Enter Code Here""" \ No newline at end of file + """Enter Code Here""" + dic = {'ODD': 0, 'EVEN': 0} + for num in list_of_nums: + if num%2==0: + dic['EVEN'] += 1 + else: + dic['ODD'] += 1 + + return dic diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..66b576d Binary files /dev/null and b/build.pyc differ diff --git a/tests/__init__.pyc b/tests/__init__.pyc new file mode 100644 index 0000000..95cf9e7 Binary files /dev/null and b/tests/__init__.pyc differ diff --git a/tests/test_solution.pyc b/tests/test_solution.pyc new file mode 100644 index 0000000..052cd3e Binary files /dev/null and b/tests/test_solution.pyc differ