소스 검색

Code cleanup

Taddeus Kroes 13 년 전
부모
커밋
5ce988fdea
2개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  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))