Question: LISP PROGRAMMING: Can you provide a LISP code for the following? Thank you! Function 2: Implement a function that finds the numbers in a list
LISP PROGRAMMING:
Can you provide a LISP code for the following? Thank you!

Function 2: Implement a function that finds the numbers in a list no matter how deep they are in the list. For example: (find-nums ' (a b 2 4 d 8 c 3 w w w 5)) should result in (2 4 8 3 5) (find-nums '(12 (3 a b) (w 3 4 (7 9 d) b) 5 a b)) should result in (1 2 3 3 47 9 5)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
