RosettaCodeData/Task/Identity-matrix/Groovy/identity-matrix-1.groovy

4 lines
105 B
Groovy
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
def makeIdentityMatrix = { n ->
(0..<n).collect { i -> (0..<n).collect { j -> (i == j) ? 1 : 0 } }
}