A Simple C++ Code to Solve Sudoku Problems
The Number class has an integer Row, Column, Value and a boolean isChangeable.
Row holds the current row of the board the Object is placed on. Column holds the current Column of the board the object is placed on. Value contains the number each object represents.
isChangeable indicates weather the current object's value can be changed or not (Some of the values on the sudoku puzzles can not be changed)
There are Appropriate Constructors and other related functions in the Number class.
The Program can not handle exceptions or non solvavle sudoku puzzles as of right now.