diff --git a/build.py b/build.py index 266c1e3..b24b167 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,8 @@ def solution(num1, num2, end_num): - """Enter Code Here""" \ No newline at end of file + """Enter Code Here""" + mylist = [] + for i in range(1,end_num): + if i%num1==0 and i%num2==0: + mylist.append(i) + + return mylist diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..d787612 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..6a12c06 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..e125fc4 Binary files /dev/null and b/tests/test_solution.pyc differ