/* * Move in from the front and end of the array. * * Requires the method to be passed both an index to * the front and an index to the end of the array. * */ public static void reverseArray(int[] arr, int front, int end){ if (arr == null || front < 0 || end < 0 ) throw new IllegalArgumentException(); // Implicit base case if(front