I need help with function that checks if all elements are numbers
for example:
(checkn '(1 2 3 a 4 5)) -> ()
(checkn '((1 2) 3 ((4 (1 2) a) 6 b))) -> ()
(checkn '((1 2) 3 ((4 (1 2) a) 6 b))) -> t
Check if its number
Re: Check if its number
Look up NUMBERP in the Numbers Dictionary.
Chapters 5 and 6 each have solutions for using this on lists of data.
Chapters 5 and 6 each have solutions for using this on lists of data.