how to reverse a word using arraylist in java code example
Example: how to reverse order of arraylist
ArrayList<Integer> arrlist = new ArrayList<Integer>();
//This is how to reverse arrlist's oringinal order.
Collections.reverse(arrlist);
//This is how to sort in a reverse order
Collections.sort(arrlist, Collections.reverseOrder());