euler/005.py
Correl Roush 715e24dcf3 For problems that include defined utility functions, only run
excecutable code if they are called directly.

git-svn-id: file:///srv/svn/euler@29 e5f4c3ec-3c0c-11df-b522-21efaa4426b5
2010-04-12 15:53:08 +00:00

12 lines
278 B
Python

def divisible(n):
i = 0
while True:
i = i + 1
x = n * i
for ii in range(n, 0, -1):
if x % ii != 0:
break
if ii == 1:
return x
if __name__ == '__main__':
print 'Smallest number: ', divisible(20)