diff --git a/build.py b/build.py index 266c1e3..ec6a5b2 100644 --- a/build.py +++ b/build.py @@ -1,2 +1,14 @@ def solution(num1, num2, end_num): - """Enter Code Here""" \ No newline at end of file + """Enter Code Here""" + a = [] + c = 0 + for i in range (1, end_num): + if i % num1 == 0 and i % num2 == 0: + a.append(i) + return a + + +''' +a = solution(2,3,20) +print a +''' diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..1fbd8da 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..1cb985c 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..072c98f Binary files /dev/null and b/tests/test_solution.pyc differ