99 LISP problems: Problem #3 Jun 20th, 2014 12:22 am Solution to the 99 LISP Problems #3: 1 2 3 4 5 6 (defun element-at (alist n) (if (< (length alist) n) nil (if (= n 1) (car alist) (element-at (cdr alist) (1- n))))) Lisp dialect: Steel Bank Common Lisp