3 — Sudoku Solver
Purpose
[stub: sudoku-solver]
Metadata
| Author | Amit Singh |
| Scope | data-structures-algorithms |
Local graph
Related notes
1 — Backtracking
The choose-explore-unchoose template and pruning strategies that make exhaustive search tractable.
2 — N Queens
Placing N non-attacking queens via backtracking with row/column/diagonal constraint tracking.
4 — Permutations
Generating all orderings of a set via backtracking, including the handling of duplicate elements.
5 — Combinations
Generating all fixed-size subsets via backtracking, and its relation to subset/power-set generation.