Haskell:
import Data.Char countVowels :: [Char] -> Int countVowels = length . filter (`elem` "aeiou" ) . map toLower
We're a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: Daily Challenge #3 - Vowel Counter VIEW POST
FULL DISCUSSIONHaskell: