Question: It's a LISP Programming problem please help me! I need to make that function.... (select db test) find the list of names from the age
It's a LISP Programming problem please help me! I need to make that function....
(select db test) find the list of names from the age database which
satisfies the given test condition(test is a function with 1 parameter - age)
db = ((tom 22)(jack 25)(joe 44)(judy 10))
(select db #'(lambda (n)(> n 23))) => (jack joe)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
