Advertisement
Guest User

p02 l-99

a guest
Feb 23rd, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. (defun my-but-last (lst)
  2. "Finds the last and second-to-last atoms of lst."
  3. (if (null lst)
  4. nil
  5. (if (null (cdr lst))
  6. lst
  7. (labels ((check-cddr (lst)
  8. (if (null (cddr lst))
  9. lst
  10. (check-cddr (cdr lst)))))
  11. (check-cddr lst)))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement