Sha256: f6111eaf988cebd2a04d0b257501af32487f322408a2557d945137f65d425ffe
Contents?: true
Size: 211 Bytes
Versions: 143
Compression:
Stored size: 211 Bytes
Contents
module Isogram (isIsogram) where import Data.Char (toLower, isLetter) import Data.List (sort, group) isIsogram :: String -> Bool isIsogram = all ((1==) . length) . group . sort . filter isLetter . map toLower
Version data entries
143 entries across 143 versions & 1 rubygems