I have this arrayList:
ArrayList<ArrayList<Integer>> temporary = new ArrayList<ArrayList<Integer>>();
Some how I need to convert it to a int[][]
I have some sort of loop right?
for(ArrayList<Integer> item: temporary) {
//Here??
}
Cheers!
Im stuck because arrays arent dynamic(or what you call it).
This should work: