public static bool IsSolved() { for (int i = 0; i < Sudoku.SIZE; i++) { if (sudoku.Get(i) == 0) { return(false); } } return(true); }