diff --git a/build.py b/build.py index 7a4c3b9..f65faa8 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,12 @@ def solution(list_of_nums): - """Enter Code Here""" \ No newline at end of file + for i in list_of_nums: + if i%2 == 0: + d1['EVEN']=d1['EVEN'] + 1 + else: + d1['ODD'] = d1['ODD'] + 1 + return d1 + + +list_of_nums = [] +d1 = {'ODD': 0, 'EVEN': 0} +solution(list_of_nums) diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..494c1c7 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..1b1f1fb 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..7aeb3e3 Binary files /dev/null and b/tests/test_solution.pyc differ