RosettaCodeData/Task/Identity-matrix/Groovy/identity-matrix-1.groovy
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

3 lines
105 B
Groovy

def makeIdentityMatrix = { n ->
(0..<n).collect { i -> (0..<n).collect { j -> (i == j) ? 1 : 0 } }
}