RosettaCodeData/Task/Matrix-transposition/Emacs-Lisp/matrix-transposition.l

6 lines
131 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
(defun transpose (m)
(apply #'mapcar* #'list m))
;;test for transposition function
(transpose '((2 3 4 5) (3 5 6 9) (9 9 9 9)))