Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
import java.util.*;
class mylist
{
public static void main(String args[])
{
MyArrayList al = new MyArrayList();
al.add(new Integer("1"));
al.add(new Integer("2"));
al.add(new Integer("3"));
al.removeRangeB(0,al.size()-1);
System.out.println(al.size());
}
}
class MyArrayList extends ArrayList
{
public MyArrayList()
{
super();
}
public void removeRangeB(int a, int b)
{
removeRange(a,b);
}
}