Question: I need help on writing recursive lisp function that takes a list as its parameter and returns a list containing a list of the applicable
I need help on writing recursive lisp function that takes a list as its parameter and returns a list containing a list of the applicable types for each item on the list.
input and output look like this:
(returntype '(1 "two" (3 4) ()))
((symbol t number) (string t) (list t) (symbol nil list))
So. it should be returning NIL, T, NUMBER, SYMBOL, LIST and STRING.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
