Create 3 - Primed for Takeoff.py

This commit is contained in:
Lukas Baumann 2021-02-17 14:58:37 +01:00 committed by GitHub
parent fded50a61a
commit 467ed5c454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,10 @@
isPrime = [i%2==1 for i in range(1000001)]
isPrime[1] = False
isPrime[2] = True
l = len(isPrime)
for i in range(3, l, 2):
if isPrime[i] == False:
continue
else:
for i in range(i*2, l, i):
isPrime[i] = False