mirror of
https://github.com/correl/euler.git
synced 2024-11-23 19:19:53 +00:00
Haskell 007
This commit is contained in:
parent
19d8515416
commit
2789b1160f
1 changed files with 25 additions and 0 deletions
25
haskell/e007.hs
Normal file
25
haskell/e007.hs
Normal file
|
@ -0,0 +1,25 @@
|
|||
{- Find the 10001st prime.
|
||||
|
||||
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
|
||||
What is the 10001st prime number?
|
||||
-}
|
||||
|
||||
import Text.Printf
|
||||
|
||||
is_prime :: (Integral a) => a -> Bool
|
||||
is_prime n
|
||||
| n == 1 = False
|
||||
| n < 4 = True
|
||||
| n `rem` 2 == 0 = False
|
||||
| n < 9 = True
|
||||
| n `rem` 3 == 0 = False
|
||||
| otherwise = do
|
||||
let f = sqrt (fromIntegral n)
|
||||
let checkprime x = (n `rem` x == 0 || n `rem` (x + 2) == 0)
|
||||
not (or (map checkprime (takeWhile (<= floor f) [5,11..])))
|
||||
|
||||
primes = filter is_prime (2:[3,5..])
|
||||
|
||||
main = do
|
||||
printf " 6th prime: %d\n" (primes !! 5 :: Integer)
|
||||
printf "10001th prime: %d\n" (primes !! 10000 :: Integer)
|
Loading…
Reference in a new issue