Is it possible to create an n dimensional array? If so, how to implement it? If the matrix is a "list of lists", then it will look something like this:
[ [ [...[]...] ],[ [...[]...] ] ] Well, or to make it clearer, like n nested segments, the picture below,
(a1[...[]...]b1, a2_m[...[]...]b2_m,...) And how to implement it in the code? If we say, I need to enter n from the keyboard. Thank you very much!
Here's a question about multidimensional arrays that didn't fit me.
