diff --git a/build.py b/build.py index 7a4c3b9..3a04dd0 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 + y=0 + x=0 + for i in list_of_nums: + if i%2==0: + y=y+1 + else: + x=x+1 + d={} + d['ODD']=int(x) + d['EVEN']=int(y) + return d diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..34dc8ff 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..3d2819e 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..5a1a412 Binary files /dev/null and b/tests/test_solution.pyc differ