[Solved] LISP Easy questio about creating new lists


A Common Lisp version is almost the same as in Scheme:

(defun solution (list)
  (apply #'mapcar #'+ list))

(solution '((1 2 3) (9 10 11) (3 4 5)))
; ==> (13 16 19)

1

solved LISP Easy questio about creating new lists