RosettaCodeData/Task/Identity-matrix/Clojure/identity-matrix-3.clj
2023-07-01 13:44:08 -04:00

2 lines
85 B
Clojure

=> (identity-matrix 5)
[[1 0 0 0 0] [0 1 0 0 0] [0 0 1 0 0] [0 0 0 1 0] [0 0 0 0 1]]