Question: Haskell 5.unzip' :: [(a,b)]- (a], [b]) Write a function that takes a list of two-tuples and returns a tuple of two lists-the first containing the

Haskell

Haskell 5.unzip' :: [(a,b)]- (a], [b]) Write a function that takes a

list of two-tuples and returns a tuple of two lists-the first containing

5.unzip' :: [(a,b)]- (a], [b]) Write a function that takes a list of two-tuples and returns a tuple of two lists-the first containing the first element of each tuple, and the second the second element (the reverse of "zip") Examples: ('a',1) , ('b' ,5) , ( 'c',) , unzip' (" ("abc", [1,5,8]) Permitted functions:() 6. runLengthEncode : String [(Int,Char) Run-length encoding is a simple form of data compression that replaces characters in a stream with the count of adjacent occurrences of that character and just a single instance of the character itself. Write a function that takes a string and returns a list of tuples reprenting the run-length encoding of that string. Examples: runLengthEncode "aaaaaaabbb'" runLengthEncode "happy daaay" Permitted functions: (:,, ) 7.runLengthDecode:: [(Int, Char)] -> String Write a function that takes the output of runLengthEncode and returns the original string. Examples runLengthDecode [(1,'h'), (5,'i')] >runLengthDecode $ runLengthEncode "whhhhaaaaat?" Permitted functions: (++),(),replicate 5.unzip' :: [(a,b)]- (a], [b]) Write a function that takes a list of two-tuples and returns a tuple of two lists-the first containing the first element of each tuple, and the second the second element (the reverse of "zip") Examples: ('a',1) , ('b' ,5) , ( 'c',) , unzip' (" ("abc", [1,5,8]) Permitted functions:() 6. runLengthEncode : String [(Int,Char) Run-length encoding is a simple form of data compression that replaces characters in a stream with the count of adjacent occurrences of that character and just a single instance of the character itself. Write a function that takes a string and returns a list of tuples reprenting the run-length encoding of that string. Examples: runLengthEncode "aaaaaaabbb'" runLengthEncode "happy daaay" Permitted functions: (:,, ) 7.runLengthDecode:: [(Int, Char)] -> String Write a function that takes the output of runLengthEncode and returns the original string. Examples runLengthDecode [(1,'h'), (5,'i')] >runLengthDecode $ runLengthEncode "whhhhaaaaat?" Permitted functions: (++),(),replicate

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!