diff options
author | Joe Zhao <ztuowen@gmail.com> | 2015-04-01 12:05:34 +0800 |
---|---|---|
committer | Joe Zhao <ztuowen@gmail.com> | 2015-04-01 12:05:34 +0800 |
commit | d09ec147fa223dcf760eaa592bc0573e678ea412 (patch) | |
tree | 636574b21abc2427d4fad059848f6bae7576e2f4 /H35.hs | |
parent | 3eec84838808139470261893ce15846852384bcf (diff) | |
download | h99-d09ec147fa223dcf760eaa592bc0573e678ea412.tar.gz h99-d09ec147fa223dcf760eaa592bc0573e678ea412.tar.bz2 h99-d09ec147fa223dcf760eaa592bc0573e678ea412.zip |
+39 +40
Diffstat (limited to 'H35.hs')
-rw-r--r-- | H35.hs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,5 +1,6 @@ module H35 ( primeFactors +, primes ) where primeSift (x:xs) = (x:) $ primeSift $ filter ((/=0).(`mod` x)) xs |