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

8 lines
152 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(require 'cl-lib)
(defun transpose (m)
(apply #'cl-mapcar #'list m))
;;test for transposition function
(transpose '((2 3 4 5) (3 5 6 9) (9 9 9 9)))