Compression reverse Haskell

后端 未结 0 1204
不知归路
不知归路 2020-11-30 21:14

I have this function where i compress a string

compression :: String -> [(Char,Int)]
compression str = map (\\lt -> (head lt, length lt)) (group str)


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题