diff --git a/build.py b/build.py index 266c1e3..f0f2df3 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 + ls = [] + i=1 + nos = range(1,end_num+1) + while(i!=len(nos)): + if (i%num1==0)and(i%num2==0): + ls.append(i) + i=i+1 + print ls + return ls +#This does use a loop, but NOT a for-loop. +solution(2,3,13) diff --git a/build.pyc b/build.pyc new file mode 100644 index 0000000..f089e6e 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..f7cbc39 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..dcccdc2 Binary files /dev/null and b/tests/test_solution.pyc differ