Question: Help on lisp programming. Create a recursive function TYPECHECK that takes a list as its parameter and returns a list containing a list of the

Help on lisp programming.

Create a recursive function TYPECHECK that takes a list as its parameter and returns a list containing a list of the applicable types (in any order) for each item on the list. The types you should check for are: NIL, T, NUMBER, SYMBOL, LIST and STRING. Do error checking on the input.

[50]> (typecheck '(a b c))

((symbol t) (symbol t) (symbol t))

[51]> (typecheck ())

NIL

[52]> (typecheck '(1 "two" (3 4) ()))

((symbol t number) (string t) (list t) (symbol nil list))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!