+ 2
How to Initialize this declaration in java?
ArrayList<ArrayList<Integer>> test ; or is it impossible to do so?
1 Answer
+ 3
It is possible. Check this outđ
https://stackoverflow.com/questions/25147799/java-arraylist-of-arraylist
ArrayList<ArrayList<Integer>> test ; or is it impossible to do so?