Sudokus are also NP-complete, which means we can solve sudokus with python packaging. Each cell in the sudoku grid is a package sudoku_{x}_{y} (0 indexed), and the version (1-9) is the value in the ...
% For subgrid of size n, subgrids can be identified by labels 1..n*n % A cell (x,y) can be mapped to the subgrid labeled 1+(((x-1)/n)*n+(y-1)/n) % Your implementation ...