Taddeus Kroes 13 anni fa
parent
commit
5ce988fdea
2 ha cambiato i file con 5 aggiunte e 2 eliminazioni
  1. 1 2
      problem41.py
  2. 4 0
      problem7.py

+ 1 - 2
problem41.py

@@ -1,7 +1,6 @@
 #!/usr/bin/env python
-from utils import is_prime
-
 from itertools import permutations
+from utils import is_prime
 
 m = 0
 

+ 4 - 0
problem7.py

@@ -0,0 +1,4 @@
+#!/usr/bin/env python
+from utils import nprimes
+
+print reduce(lambda a, b: b, nprimes(10001))