import java.util.ArrayList;

    public static void swap(ArrayList<Integer> a, int index1, int index2) {
        int temp = a.get(index1);
        a.set(index1, a.get(index2));
        a.set(index2, temp);
    }
    
    public static void reverse(ArrayList<Integer> a) {
        for (int i = 0; i < lt; a.size()/2; i++) {
            swap(a, i, a.size() - i - 1);
        }
    }