Question: In Racket, write a recursive function called first-index that returns only the first index of the specified element in a list. Ex : (first-index '1
In Racket, write a recursive function called "first-index" that returns only the first index of the specified element in a list.
Ex : (first-index '1 '(3 5 1 4 5 2 1))
Would return 3
The function must take 2 arguments, the item you wish to find its index and a list.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
