module Exercise_13 where import qualified Data.ByteString as BS {- G13.3 -} fib1 :: [Integer] fib1 = undefined {- G13.4 -} mix :: [[a]] -> [a] mix = undefined {- H13.1 -} wordsOf :: [a] -> [[a]] wordsOf = undefined {- H13.2 -} skipper :: [a] -> [[a]] skipper = undefined {- H13.3 -} lookupByFilter :: Eq a => a -> [(a, b)] -> Maybe b lookupByFilter = undefined {- H13.4 -} {-WETT-} compress :: BS.ByteString -> BS.ByteString compress = undefined decompress :: BS.ByteString -> BS.ByteString decompress = undefined {-TTEW-}