Moved 6 to 11 from ipython to python.

This commit is contained in:
2019-07-14 16:51:31 -04:00
parent b246d56acd
commit 86e68eeee2
8 changed files with 289 additions and 3 deletions

9
python/e010.py Normal file
View File

@@ -0,0 +1,9 @@
from lib_prime import primes
def euler_010():
return sum(primes(2 * 10**6))
assert(euler_010() == 142913828922)
print("e010.py: {}".format(euler_010()))