Can I initialize ArrayList of 2D array, is this a thing?
So when I try to initialize this, below is my code
ArrayList<int>[][] suffle = new ArrayList<int>[row][col];
I get an error like this:
Error: Syntax error, insert "Dimensions" to complete ReferenceType
How can I fix this?
ArrayLists.