diff --git a/build.py b/build.py index 266c1e3..df01e79 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,6 @@ 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: + div_by_two = [div_by_two for div_by_two in range(1,end_num+1) if div_by_two%num1==0 and div_by_two%num2==0] + + return div_by_two diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..97a9dd0 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..db4dd53 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..ea12b03 Binary files /dev/null and b/tests/test_solution.pyc differ