Problem 3 more efficient.

Downloaded some new stuff on primes. 

Signed-off-by: Julien Lengrand-Lambert <julien@lengrand.fr>
This commit is contained in:
Julien Lengrand-Lambert
2012-02-22 23:49:15 +01:00
parent 98d0e588d8
commit 691187f50a

View File

@@ -9,6 +9,7 @@
that the 6th prime is 13. that the 6th prime is 13.
What is the 10 001st prime number? What is the 10 001st prime number?
#--- #---
"""
""" """
import utils.primes as prime import utils.primes as prime
@@ -16,3 +17,4 @@ print prime.prime_list
print prime.prime(10000) print prime.prime(10000)
print prime.prime_list print prime.prime_list
print prime.prime(10000) print prime.prime(10000)
"""