public SudokuSolver(Cell[,] matrix)
        {
            Matrix = matrix;

            // Creation list of possible values.
            Matrix.CreatePossible();
        }