Created
June 29, 2022 17:48
-
-
Save tallpeak/947195ce25a6ff0463b95e34e37061dd to your computer and use it in GitHub Desktop.
A solution to https://exercism.org/tracks/haskell/exercises/pangram
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Pangram (isPangram) where | |
import Data.Char | |
import Data.Bits | |
charToBit :: Char -> Int | |
charToBit c = let bit = (fromEnum c .|. 32) - 97 in | |
if bit >=0 && bit < 26 then 2 ^ bit else 0 | |
bitsum :: String -> Int | |
bitsum txt = foldl (.|.) 0 (map charToBit txt) | |
isPangram :: String -> Bool | |
isPangram text = 2^26-1 == bitsum text | |
qbf="The quick brown fox jumps over the lazy dog" | |
main = do | |
print $ isPangram qbf | |
print $ isPangram "not a pangram" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment