Skip to content

Instantly share code, notes, and snippets.

@x1001000
Created January 9, 2019 00:13
Show Gist options
  • Save x1001000/b9c2fe2bd237c653cab494265b02036a to your computer and use it in GitHub Desktop.
Save x1001000/b9c2fe2bd237c653cab494265b02036a to your computer and use it in GitHub Desktop.
MAX = 1001000
is_prime = [False,False]+[True]*(MAX-1)
primes = []
now = 2
while True:
primes.append(now)
for i in range(now*2, MAX+1, now):
is_prime[i] = False
now += 1
try:
while is_prime[now] == False:
now += 1
except:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment