. Advertisement .
..3..
. Advertisement .
..4..
I’m using java to put array in array list. Here is the code I am writing
// Declare List Array
List<Integer>[] array = new List<Integer>[10];
// Set the value of an array element
array[0] = new ArrayList<Integer>();
// ???
I want to ask how to put array in array list?
I tried to complete your question