/Sudoku-solver-in-cpp

This program will accept a sudoku board and return its solution if it is possible. Board will have a 0 where there is an empty cell

Primary LanguageC++

Sudoku-solver-in-cpp

This program will accept a sudoku board and return its solution if it is possible. Board will have a 0 where there is an empty cell.

Steps to execute

Terminal -> compile(g++ file_name.cpp) -> execute(./output_filename.exe or .out) -> provide a 9X9 board which you can pick from File Sample to test. -> it gives a solved board if it is solvable.