In HASKELL
Write a function that will delete leading white space from astring.
cutWhitespace [” x”,”y”,” z”]
ans: [“x”,”y”,”z”]
You are allowed to use any higher order function/ListComprehension(if you want to use) to solve this problem.
Expert Answer
An answer will be send to you shortly. . . . .