Given an incomplete Sudoku configuration in terms of a 9 x 9 2-D square matrix (grid[][]), the task to find a solved Sudoku. For simplicity, you may assume that there will be only one unique solution.
- Time : O(9^(n*n))
- Space : O(1)
c++
1 | vector<int> cells(9), rows(9), cols(9); |