Skip to content
Advertisement

Tag: sudoku

Sudoku Backtracking with Solution Counter

Background I’ve implemented a sudoku-solver algorithm (backtracking) that looks like this: This solution is working fine (it can solve sudokus). What I try to achieve I now want to achieve that the algorithm tells me, whether there is only one solution or more solutions. What I’ve tried I tried to achieve my goal, by changing the return type to an

Advertisement