-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathch12.hs
37 lines (30 loc) · 846 Bytes
/
ch12.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module Chapter12 where
import Data.Char
import Data.Maybe
notThe :: String -> Maybe String
notThe w =
case map toLower w of
"the" -> Nothing
_ -> Just w
replaceThe :: String -> String
replaceThe = unwords . map (fromMaybe "a" . notThe) . words
data WordType =
The
| Vowel
| Consonant
deriving (Eq)
wordType :: String -> WordType
wordType w =
case map toLower w of
"the" -> The
lowercased ->
case head lowercased of
c
| c `elem` ['a', 'e', 'i', 'o', 'u'] -> Vowel
| otherwise -> Consonant
pairs :: [a] -> [(a,a)]
pairs [] = []
pairs [_] = []
pairs (x:y:xs) = (x,y) : pairs (y:xs)
countTheBeforeVowel :: String -> Integer
countTheBeforeVowel = fromIntegral . length . filter (\p -> p == (The, Vowel)) . pairs . map wordType . words