Question: Write an emacs/lisp program (Provide proof it works) A function called element taking two parameters. You can assume that the first one is a list

Write an emacs/lisp program (Provide proof it works)

A function called element taking two parameters. You can assume that the first one is a list and the second one a non-negative number. The function must return the i-th element of the list. We'll assume that the car of the list is the element number 0, the next one is number 1, and so on. If the index is higher than the length of the list, the function should return nil. Implementation suggestion: you can use either the loop dolist with a counter, or the loop dotimes in combination with the function pop. Recursion also works.

What the results should look like: (element '(1 2) 4) ; nil (element '(a b c d e) 4) ; 'e (element '(3 1 2 6) 0) ; 3

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!