-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp001.py
12 lines (11 loc) · 885 Bytes
/
p001.py
1
2
3
4
5
6
7
8
9
10
11
12
################################################################################
# P1: Multiples of 3 and 5 #
################################################################################
# #
# Find the sum of all the multiples of 3 or 5 below 1000. #
# #
################################################################################
# Problem found at projecteuler.net #
# Author: ncfgrill #
################################################################################
print('Sum:', sum(x for x in range(3, 1000) if x % 3 == 0 or x % 5 == 0))