diff --git a/build.py b/build.py index 266c1e3..73ed0cd 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,12 @@ def solution(num1, num2, end_num): - """Enter Code Here""" \ No newline at end of file + """Enter Code Here""" + if num1 > 0 and num2 > 0 and end_num > 0: + x = [x for x in range(1,end_num+1) if x%num1==0 and x%num2==0] + + return x + +#solution(2, 3, 13) +#Input [6,12] + +#solution(2, 4, 13) +#Input [4,8,12] diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..9a08a55 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..ae138c2 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..6e5ea78 Binary files /dev/null and b/tests/test_solution.pyc differ