Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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: (++),(),replicateStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started