Transpose a matrix (def A [[1 2] [3 4]]) (apply map vector A) ; ([1 3] [2 4]). link. ;; Use apply to map a function over a collection of pairs of arguments ...
確定! 回上一頁