Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 614 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 614 Bytes

Sudoku-Solver

  • Program which solves Sudoku (9x9) problem using backtracking approach.

How to use the program

  • The program ask the user to fill the rows with number from 0 to 9; where 0 represents EMPTY CELLS.
  • If solution exist, the program will output it.
  • ENJOY !!!

Files included

  • Sudoku folder contains the following files:

    • Colors.h -> Some color use in the program
    • header.h -> functions prototype
    • sudoku.cpp -> functions implementation
    • main.cpp -> test program
    • makefile -> GNU Make
  • Output example folder contains the following files:

    • Output example.png