Add Haskell solution for Problem 17

This commit is contained in:
daniele 2024-12-20 19:44:43 +01:00
parent bebadf9437
commit 71e426257e
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
3 changed files with 44 additions and 1 deletions

View File

@ -18,9 +18,10 @@ executable projecteuler
default-language: Haskell2010 default-language: Haskell2010
build-depends: base >= 4.7 && < 5 build-depends: base >= 4.7 && < 5
, containers , containers
, data-ordlist
, split , split
, time , time
, data-ordlist , unordered-containers
ghc-options: -Wall ghc-options: -Wall
-Wcompat -Wcompat
-Widentities -Widentities
@ -47,6 +48,7 @@ executable projecteuler
P014 P014
P015 P015
P016 P016
P017
P019 P019
P020 P020
P021 P021

View File

@ -16,6 +16,7 @@ import P013
import P014 import P014
import P015 import P015
import P016 import P016
import P017
import P019 import P019
import P020 import P020
import P021 import P021
@ -55,6 +56,7 @@ main = do
"14" : _ -> p014 "14" : _ -> p014
"15" : _ -> p015 "15" : _ -> p015
"16" : _ -> p016 "16" : _ -> p016
"17" : _ -> p017
"19" : _ -> p019 "19" : _ -> p019
"20" : _ -> p020 "20" : _ -> p020
"21" : _ -> p021 "21" : _ -> p021

39
Haskell/src/P017.hs Normal file
View File

@ -0,0 +1,39 @@
-- If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are 3 + 3 + 5 + 4 + 4 = 19 letters used in total.
--
-- If all the numbers from 1 to 1000 (one thousand) inclusive were written out in words, how many letters would be used?
--
-- NOTE: Do not count spaces or hyphens. For example, 342 (three hundred and forty-two) contains 23 letters and 115 (one hundred and fifteen)
-- contains 20 letters. The use of "and" when writing out numbers is in compliance with British usage.
module P017 (p017) where
import qualified Data.HashMap.Strict as M
countLetters :: M.HashMap String [Int] -> Int
countLetters ls =
let oneTo19 = sum (ls M.! "1to19")
twentyTo99 =
(sum . map (* 10) $ ls M.! "20to90")
+ (sum . map (* 8) . take 9 $ ls M.! "1to19")
hundredTo999 =
(sum . map (* 100) $ ls M.! "100to900")
+ 9 * oneTo19
+ 9 * twentyTo99
- 27
thousand = sum (ls M.! "1000")
in oneTo19 + twentyTo99 + hundredTo999 + thousand
p017 :: IO ()
p017 = do
let letters =
M.fromList
[ ("1to19", [3, 3, 5, 4, 4, 3, 5, 5, 4, 3, 6, 6, 8, 8, 7, 7, 9, 8, 8]),
("20to90", [6, 6, 5, 5, 5, 7, 6, 6]),
("100to900", [13, 13, 15, 14, 14, 13, 15, 15, 14]),
("1000", [11])
]
putStrLn $
"Project Euler, Problem 16\n"
++ "Answer: "
++ show (countLetters letters)