Exemple #1
0
 def solveUsingPeterNorvigAlgorithm(self):
     """
     This method creates an instance of Peter Norvig algorithm child class
     and solves the game by the string entered.
     """
     peterInstance = PeterNorvigAlgorithm(self.getSudokuString())
     peterInstance.solveSudoku()
     self.printSudokuSolved(peterInstance.solution, peterInstance.runningTime)