nlattessi

Seminario_TP4_EJ07

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