I am working in Java and am wondering, are multi-dimensional arrays like grids where rows are elements and columns are dimensions, or are they hyper-geometric figures that we can’t see?
I am working in Java and am wondering, are multi-dimensional arrays like grids where
Share
A 1D array is like a list, a 2D array is like a table with columns and rows, a 3D array is like a cube, x, y and z and anything more than that would be hyper-geometric. You could represent a cube with time with a 4D array.