diff --git a/build.py b/build.py index 7a4c3b9..a2bbd33 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,8 @@ def solution(list_of_nums): - """Enter Code Here""" \ No newline at end of file + dic = {"ODD":0,"EVEN":0} + for x in list_of_nums: + if x%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..6e06f4d 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..0546671 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..2088821 Binary files /dev/null and b/tests/test_solution.pyc differ