Question: SCHEME PROBLEM: Write a Scheme procedure remove-dups which takes a list of words/letters as input and returns the list with consecutive repeated words/letters removed. Note
SCHEME PROBLEM:
Write a Scheme procedure remove-dups which takes a list of words/letters as input and returns the list with consecutive repeated words/letters removed. Note that multiple instances of a letter are allowed if they are not consecutive. For example, (remove-dups (a b c c d d c a a b)) (a b c d c a b)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
