ufopassenger
4
Q:

delete element from arraylist

//Create the ArrayList
List<Integer> al = new ArrayList<>(); 
//Add the items
al.add(10);
al.add(18);
//Remove item(1 = 2and item in list)
al.remove(1); 
7
//Create the ArrayList
List<Integer> al = new ArrayList<>(); 
//Add the items
al.add(10);
al.add(18);
//Remove item(1 = 2nd item in list)
al.remove(1); 
>> [10]
4

New to Communities?

Join the community