In repl addition accross vectors works as expected
> (map + [1 2 3] [1 2 3])
(2 4 6)
But what I have is a vector of vectors and when I try
> (apply #(map + %) [[1 2 3] [1 2 3]])
ArityException Wrong number of args (2) passed to: user$eval14$fn clojure.lang.AFn.throwArity (AFn.java:437)
How do I add corresponding numbers in vector of vector?
It’s just one step from your first example: