Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
5 lines (5 loc) · 346 Bytes

README.md

File metadata and controls

5 lines (5 loc) · 346 Bytes

sudoku_solver_backtracking

A simple sudoku solver using the backtracking algorithm. Input : a single txt file given through the command line arguements like this $./a.exe <file.txt> File format : 9 rows each containing 9 numbers seperated by spaces. The numbers range from 0 to 9 (0s are empty squares, 1-9s are existing numbers on the board).