Question: Write a Scheme function that takes two atoms and a list as parameters and returns a list identical to the parameter list except all occurrences
Write a Scheme function that takes two atoms and a list as parameters and returns a list identical to the parameter list except all occurrences of the first given atom in the list are replaced with the second given atom, no matter how deeply the first atom is nested.
Step by Step Solution
3.35 Rating (164 Votes )
There are 3 Steps involved in it
define findandreplace x y list cond null list if the list is null returns empty list list car ... View full answer
Get step-by-step solutions from verified subject matter experts
