Fix typo and update ProjectEuler library

This commit is contained in:
daniele 2024-11-09 18:45:42 +01:00
parent 2b8c7e0bce
commit 4245a2d19b
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
2 changed files with 9 additions and 1 deletions

View File

@ -1,7 +1,10 @@
module ProjectEuler
( isPrime
, digitSum
) where
import Data.Char (digitToInt)
isPrime :: (Integral n) => n -> Bool
isPrime 1 = False
isPrime 2 = True
@ -10,3 +13,8 @@ isPrime n =
n `mod` 2 /= 0 && n `mod` 3 /= 0 && null [ x | x <- candidates, n `mod` x == 0 || n `mod` (x+2) == 0 ]
where candidates = [5,11..limit]
limit = floor(sqrt(fromIntegral n)) + 1
digitSum :: (Integral a, Show a) => a -> Int
digitSum n = sum $ map digitToInt $ show n

View File

@ -13,5 +13,5 @@ factorial n = n * factorial (n - 1)
main = do
let result = digitSum $ factorial 100
putStrLn $ "Porject Euler, Problem 20\n"
putStrLn $ "Project Euler, Problem 20\n"
++ "Answer: " ++ (show result)