Added Problem 10

This commit is contained in:
Lauchmelder23 2018-10-10 14:20:56 +02:00
parent 51e8456e9b
commit afd4c29f80

19
Problem_10.py Normal file
View file

@ -0,0 +1,19 @@
######################################################################
# The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
#
# Find the sum of all the primes below two million.
######################################################################
def isPrime(x):
for i in range(2, int(pow(x, 1/2)) + 1):
if x % i == 0:
return False
return True
sum = 0
for number in range(2, 2000000):
if isPrime(number):
sum += number
print(sum)
# Solution: 142913828922