def is_column_solved_(self, column: int):
     return RowInstructions.is_row_solved(
         self.board.get_column(column),
         self.board.get_column_instructions(column))
Beispiel #2
0
 def is_row_solved_(row: CellRow, instructions: RowInstructions):
     return RowInstructions.is_row_solved(row, instructions)
 def is_row_solved_(self, row: int):
     return RowInstructions.is_row_solved(
         self.board.get_row(row), self.board.get_row_instructions(row))