mirror of
https://github.com/correl/euler.git
synced 2024-11-27 11:09:54 +00:00
Problem 010
git-svn-id: file:///srv/svn/euler@32 e5f4c3ec-3c0c-11df-b522-21efaa4426b5
This commit is contained in:
parent
5bbf86c6c3
commit
8249e88efc
1 changed files with 5 additions and 0 deletions
5
e010.py
Normal file
5
e010.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from e007 import primes;
|
||||
|
||||
print 'Fetching all primes for n < 2,000,000'
|
||||
p = primes(0, 2000000)
|
||||
print 'Sum:', sum(p)
|
Loading…
Reference in a new issue