Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

/** * Given a 2D array of characters, return true if any row, column or diagonal

ID: 3730096 • Letter: #

Question

/**

   * Given a 2D array of characters, return true if any row, column or diagonal of

   * the table has only lower-case letters. You can assume the bingo table is a

   * square.

   *

   * @param table

   * 2-D array of characters where each element contains an alphabet (capital or lower-case)

   * @return true if any row, column, or diagonal lower-case letter bingo is found.

   * false otherwise.

   */

public static boolean caseBingo(char[][] table) {

throw new UnsupportedOperationException("Remove this line and replace with your implementation.");

}

Explanation / Answer

public static boolean caseBingo(char[][] table) { for(int i = 0;i