Algorithm Design for Random Sudoku Game (Sudoku)
Original link: https://justyy.com/archives/61763 sudoku-solver Given a Sudoku, we can use a depth-first search algorithm, an iterative deepening search algorithm, or a breadth-first search algorithm to find possible solutions. Conversely, if we are to design an algorithm to generate valid Sudoku, we need to clarify the following questions: Must the generated Sudoku have a solvable state? […]
Algorithm Design for Random Sudoku Game (Sudoku) Read More »