Question: Haskell: Write a function decode string (using recursion) that decodes a string in the simple repeat encoding. So decode a1b2 should return abb and decode

Haskell:

Write a function decode string (using recursion) that decodes a string in the simple repeat encoding.

So decode "a1b2" should return "abb" and decode "t1h1e1" should return "the"

Hints: You will need to pull the first two characters from the front of the string. Pattern matching can do this.

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!