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
Get step-by-step solutions from verified subject matter experts
