Question: What does the following Scheme function do? Explain your answer using two examoles. (equal? can be used for comparison with strings, byte strings, numbers, pairs,
What does the following Scheme function do? Explain your answer using two examoles.
(equal? can be used for comparison with strings, byte strings, numbers, pairs, mutable pairs, vectors, boxes, hash tables, and inspects table structures.)
(define (y s lis) (cond ((null? lis) '()) ((equal? s (car lis)) lis) (#t (y s (cdr lis))) ))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
