Skip to content

Instantly share code, notes, and snippets.

@tallpeak
Created June 29, 2022 17:48
Show Gist options
  • Save tallpeak/947195ce25a6ff0463b95e34e37061dd to your computer and use it in GitHub Desktop.
Save tallpeak/947195ce25a6ff0463b95e34e37061dd to your computer and use it in GitHub Desktop.
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