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

5 lines
125 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defn identity-matrix [n]
(take n
(partition n (dec n)
(cycle (conj (repeat (dec n) 0) 1)))))