nlattessi

Seminario_TP4_EJ03

May 23rd, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.16 KB | None | 0 0
  1. (defun cuenta-atomos (l)
  2.     (if (null l)
  3.         0
  4.         (if (atom (car l))
  5.             (+ 1 (cuenta-atomos (cdr l)))
  6.             (+ (cuenta-atomos (car l)) (cuenta-atomos (cdr l)))
  7.         )
  8.     )
  9. )
Advertisement
Add Comment
Please, Sign In to add comment