A Simple Sudoku Solver
Posted on Sat 03 September 2022 in Programming • Tagged with Programming
The Problem
The problem is a simple search problem: given a partially filled sudoku board, return a fully filled sudoku board with the initial numbers in place such that each digit features only once in every row, column and 3x3 subgrid.
The Solution
These problems, in general, are called Constraint …
Continue reading