Minor optimization to 007

git-svn-id: file:///srv/svn/euler@27 e5f4c3ec-3c0c-11df-b522-21efaa4426b5
This commit is contained in:
Correl Roush 2010-04-12 15:53:06 +00:00
parent 6874be8b31
commit 743dbe3aef

6
007.py
View file

@ -1,6 +1,6 @@
def primes(limit):
primes = []
i = 2
primes = [2]
i = 3
while len(primes) < limit:
is_prime = True
for p in primes:
@ -9,7 +9,7 @@ def primes(limit):
break
if is_prime:
primes.append(i)
i = i + 1
i = i + 2
return primes
print '6th Prime', primes(6)[-1]