Closed Phantom-Sixth-Man closed 2 years ago
I have already done this kind of problem using recursion and backtracking so if u can assign this task to me I can do it.
I have already implemented the sudoku solver, please find the PR with Solution (soduku-solver)
I have already implemented the optimized suduko solver code using backtracking and recursion, so you can assign this task to me.
As being a problem solver .I'm a bit fluent in solving these kind of problems, i would be very gratefull if you asssign this task to me
Is your feature request related to a problem? Please describe. Write a program to solve a Sudoku puzzle by filling the empty cells.
Describe the solution you'd like A sudoku solution must satisfy all of the following rules:
Each of the digits 1-9 must occur exactly once in each row. Each of the digits 1-9 must occur exactly once in each column. Each of the digits 1-9 must occur exactly once in each of the 9 3x3 sub-boxes of the grid. The '.' character indicates empty cells.
See below example:
Additional context Need Optimized solution