Question

In HASKELL Write a function that will delete leading white space from a string. cutWhitespace ["...

In HASKELL

Write a function that will delete leading white space from a string.

cutWhitespace [" x","y"," z"]

ans: ["x","y","z"]

You are allowed to use any higher order function/List Comprehension(if you want to use) to solve this problem.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

removeLeadingWhiteSpace (x:xs)
| x == ' ' = removeLeadingWhiteSpace(xs)
| otherwise = x:xs

cutSpace arr = map removeLeadingWhiteSpace arr

*Main> cutSpace CX, Y, Z] Main
Add a comment
Know the answer?
Add Answer to:
In HASKELL Write a function that will delete leading white space from a string. cutWhitespace ["...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT