-
Notifications
You must be signed in to change notification settings - Fork 0
/
36_sudokuValid.cpp
60 lines (52 loc) · 1.86 KB
/
36_sudokuValid.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <iostream>
#include <vector>
using namespace std;
bool isValidSudoku(vector<vector<char>>& board)
{
int row[9][9] = {0};
int col[9][9] = {0};
int box[9][9] = {0};
for (int i = 0; i != 9; ++i) {
for (int j = 0; j != 9; ++j) {
if ('.' == board[i][j]) {
continue;
}
else {
int num = board[i][j] - '1';
int k = i / 3 * 3 + j / 3;
if (row[i][num] || col[j][num] || box[k][num]) {
return false;
}
row[i][num] = col[j][num] = box[k][num] = 1;
}
}
}
return true;
}
int main(int argc, char const *argv[])
{
vector<vector<char>> board = {
{'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'}
};
// vector<vector<char>> board = {
// {'8', '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'}
// };
cout << isValidSudoku(board) << " = result" << endl;
return 0;
}