Answered step by step
Verified Expert Solution
Link Copied!

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

image text in transcribed

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: (:,, )

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Mining Concepts And Techniques

Authors: Jiawei Han, Micheline Kamber, Jian Pei

3rd Edition

0123814790, 9780123814791

More Books

Students also viewed these Databases questions

Question

1. What is Ebola ? 2.Heart is a muscle? 3. Artificial lighting?

Answered: 1 week ago