/** HW 6, Problem 3 */ class BigMat { /** The number, r, of the row of A that contains the most 1's. When * there is more than one such row, the smallest index. */ public static int mostOnes (BitMatrix A) { return 0; // REPLACE WITH CORRECT SOLUTION } }