Below is the starter code that my school gave me, and the error keeps persisting until I delete the reverse(int[], originalArray,) method. Can anyone tell me what is wrong here? (There's a test class given to us, but it's too long to post)
import java.util.*;
public class ReverseRecurse {
public int[] initArray() {
}
public void printArray ( int[] array) {
}
public void reverse ( int [] originalArray, int low, int high) {
}
public int reverse ( int[] originalArray, ) {
}
}