Help with this method for a minesweeper game in JAVA /** * This updates the map
ID: 3605540 • Letter: H
Question
Help with this method for a minesweeper game in JAVA /** * This updates the map with each unswept mine shown with the Config.HIDDEN_MINE * character. Swept mines will already be mapped and so should not be changed. * This method does not print out anything. * * @param map An array containing the map. On return the map shows unswept mines. * @param mines An array indicating which locations have mines. No changes * are made to the mines array. */ public static void showMines(char[][] map, boolean[][] mines) { return; //FIXME }