99 LISP problems: Problem #6 Jun 20th, 2014 1:06 am Solution to the 99 LISP Problems #6 1 2 3 4 5 6 7 8 9 (defun my-reverse (alist) (if (null alist) nil (append (my-reverse (cdr alist)) (list (car alist))))) (defun my-palindromep (alist) (equalp alist (my-reverse alist))) Lisp dialect: Steel Bank Common Lisp