Skip to content

Instantly share code, notes, and snippets.

@sholfen
Created August 2, 2017 15:22
Show Gist options
  • Save sholfen/cf1f19f9dec9717e5ca502cf56e7ad5a to your computer and use it in GitHub Desktop.
Save sholfen/cf1f19f9dec9717e5ca502cf56e7ad5a to your computer and use it in GitHub Desktop.
prove the smallest number
for i in range(1, 2525):
result = 0
for j in range(1, 11):
if(0 == i%j):
result += 1
if 10 == result:
print(i)
result = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment