Skip to content

Instantly share code, notes, and snippets.

@klen
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klen/9785801 to your computer and use it in GitHub Desktop.
Save klen/9785801 to your computer and use it in GitHub Desktop.
""" Project Euler problem #1. """
def problem():
""" Solve the problem.
If we list all the natural numbers below 10 that are multiples of 3 or 5,
we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
Answer: 233168
"""
return sum([x for x in range(1000) if not x % 3 or not x % 5])
if __name__ == '__main__':
print problem()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment