Exemplo n.º 1
0
 def __init__(self, sqrt_n):
     Sudoku.__init__(self, sqrt_n)
     self.make_board()
Exemplo n.º 2
0
 def __init__(self, sqrt_n, board):
     Sudoku.__init__(self, sqrt_n)
     self.board = board
     self.constraints = self.get_board_constraints()