99 LISP problems: Problem #14 Jun 20th, 2014 3:38 pm Solution to the 99 LISP Problems #14 1 2 3 4 5 6 (defun dupli (alist) (if (null alist) nil (append (list (car alist) (car alist)) (dupli (cdr alist))))) Lisp dialect: Steel Bank Common Lisp