Question: Using scheme or racket, write a function, removeAll , which takes two lists, list-a and list-b and returns a list containing only the items in
Using scheme or racket, write a function, removeAll, which takes two lists, list-a and list-b and returns a list containing only the items in list-a that are not also in list-b. E.g., (remove-all '(a b b c c d) '(a c a)) -> '(b b d)
Thank you
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
