https://github.com/mahonrim/problem1projeceuler
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 in python
https://github.com/mahonrim/problem1projeceuler
exercise1 mahonrimartinez problem-solving problems project-euler python python-3 python3
Last synced: 9 months ago
JSON representation
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 in python
- Host: GitHub
- URL: https://github.com/mahonrim/problem1projeceuler
- Owner: MahonriM
- License: mit
- Created: 2021-01-16T07:32:42.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-16T07:33:11.000Z (about 5 years ago)
- Last Synced: 2025-07-05T09:06:59.721Z (9 months ago)
- Topics: exercise1, mahonrimartinez, problem-solving, problems, project-euler, python, python-3, python3
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Problem1ProjecEuler
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 in python