RosettaCodeData/Task/Identity-matrix/Clojure/identity-matrix-3.clj

3 lines
85 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
=> (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]]