Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 673 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 673 Bytes

Sudoku-Solver

Sudoku Solver using backtracking in C++

• Tools Required - o VS Code (Visual Studio Code) o C/C++ Compiler and Debugger

• Configure Procedures - o Install VS Code (Visual Studio Code) o Install VS Code C/C++ extensions o Install C/C++ Compiler and Debugger o Create Code, Compile It, and Run It

  • for building and running the project, you can press Ctrl + Shift +B to build and type the executable name to run in terminal .

• Description - This is a C++ program to solve a sudoku problem using backtracking and recursion. Input – a partially filled 9*9 matrix representing unsolved sudoku with 0 at empty places. Output – a solved sudoku