Я пытаюсь перенести список списков; мои комментарии указывают на мыслительный процесс.
(setq thingie '((1 2 3) (4 5 6) (7 8 9))) ;;test case
(defun trans (mat)
(if (car mat)
(let ((top (mapcar 'car mat)) ;;slice the first row off as a list
(bottom (mapcar 'cdr mat))) ;;take the rest of the rows
(cons top (trans bottom)))) ;;cons the first-row-list with the next-row-list
mat)
(trans thingie)
=> ((1 2 3) (4 5 6) (7 8 9)) ;;wait what?
Но я действительно хочу, чтобы это было
((1 4 7) (2 5 8) (3 6 9))
Что я делаю неправильно?