diff --git a/build.py b/build.py index 266c1e3..8537bf0 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,4 @@ def solution(num1, num2, end_num): - """Enter Code Here""" \ No newline at end of file + """Enter Code Here""" + lis1 = [x for x in range(1,end_num+1) if x % num1==0 and x%num2==0 ] + return lis1 diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..1979390 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..c750cd4 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..07570ae Binary files /dev/null and b/tests/test_solution.pyc differ