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.
public static Object[] slice(Object[] originalArray, int begin, int end) {
if (begin<0 || end>originalArray.length)
throw new SlicedException("Don't slice me!");
Object[] slicedArray = new Object[length];
for ( int i=begin; i<end; i++ ) {
slicedArray[i-begin] = originalArray[i];
}
return slicedArray;
}
public List<E> subList(int fromIndex, int toIndex)