import java.util.ArrayList; /* An instance of this class, which extends SaddleBackSearcher, uses the ** Search-by-Elimination approach to find occurrences of a given key within ** a matrix. ** ** Authors: R. McCloskey and < STUDENTS' NAME(s) > */ public class SaddleBackSearchByElim extends SaddleBackSearcher { // constructor // ----------- public SaddleBackSearchByElim(int[][] ary) { super(ary); } @Override protected void findAllAux(GridLocation lowCorner, GridLocation highCorner) { // STUB } }