題目描述 有效的數(shù)獨(dú)
判斷一個 9x9 的數(shù)獨(dú)是否有效。只需要根據(jù)以下規(guī)則,驗證已經(jīng)填入的數(shù)字是否有效即可。
數(shù)字 1-9 在每一行只能出現(xiàn)一次。
數(shù)字 1-9 在每一列只能出現(xiàn)一次。
數(shù)字 1-9 在每一個以粗實(shí)線分隔的 3x3 宮內(nèi)只能出現(xiàn)一次。
上圖是一個部分填充的有效的數(shù)獨(dú)。
數(shù)獨(dú)部分空格內(nèi)已填入了數(shù)字,空白格用 '.' 表示。
示例:
輸入:
[
["5","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
]
輸出: true
解題思路
代碼
class Solution {
public:
bool isValidSudoku(vector<vector<char> > &board) {
if (board.empty() || board[0].empty()) return false;
int m = board.size(), n = board[0].size();
vector<vector<bool> > rowFlag(m, vector<bool>(n, false));
vector<vector<bool> > colFlag(m, vector<bool>(n, false));
vector<vector<bool> > cellFlag(m, vector<bool>(n, false));
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
if (board[i][j] >= '1' && board[i][j] <= '9') {
int c = board[i][j] - '1';
if (rowFlag[i][c] || colFlag[c][j] || cellFlag[3 * (i / 3) + j / 3][c]) return false;
rowFlag[i][c] = true;
colFlag[c][j] = true;
cellFlag[3 * (i / 3) + j / 3][c] = tru
}
}
}
return true;
}
};