For example, initialize the entire array to 0 or any other value.
[
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]
]
For example, initialize the entire array to 0 or any other value.
[
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]
]
Sure
Array.new(3) { Array.new(4, 0) }
=> [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]