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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started