3 lines
121 B
Common Lisp
3 lines
121 B
Common Lisp
(defun list< (a b)
|
|
(let ((x (find-if-not #'zerop (mapcar #'- a b))))
|
|
(if x (minusp x) (< (length a) (length b)))))
|