Sudoku Solver using OpenCV
Solving a sudoku is all about putting digits between 1 and 9 into a square, 9×9 grid, subdivided into 9 boxes. But, the value of a cell cannot be repeated among any of its peers. In today’s blog, I’ll explain how to create a sudoku solver using OpenCV. The steps Read more…