-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku_checker.cpp
76 lines (66 loc) · 2.07 KB
/
sudoku_checker.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//https://ide.geeksforgeeks.org/eAfrUsdGjm
//check valid sudoku arrangement
#include<bits/stdc++.h>
using namespace std;
int mod=1e9+7;
#define F(a,b,var) for(int var=a;var<b;var++)
#define FAST_INP ios_base::sync_with_stdio(false);cin.tie(NULL)
bool isValidRow(char board[][9], int row){
set<char> s;
for(int i=0; i<9; i++){
if(s.find(board[row][i]) != s.end()) return false;
if(board[row][i] != '.') s.insert(board[row][i]);
}
return true;
}
bool isValidCol(char board[][9], int col){
set<char> s;
for(int i=0; i<9; i++){
if(s.find(board[i][col]) != s.end()) return false;
if(board[i][col] != '.') s.insert(board[i][col]);
}
return true;
}
bool isValidBox(char box[][9], int sRow, int sCol){
set<char> s;
for(int i=0; i<3; i++){
for(int j=0; j<3; j++){
char current = box[i + sRow][j + sCol];
if(s.find(current) != s.end()) return false;
if(current != '.') s.insert(current);
}
}
return true;
}
bool isValidBoard(char board[][9], int row, int col){
return isValidBox(board, row - row%3, col - col%3) && isValidRow(board, row) && isValidCol(board, col);
}
bool isValidConfig(char board[][9], int n){
for(int i=0; i<n ;i++){
for(int j=0; j< n; j++){
if(!isValidBoard(board, i, j)) return false;
}
}
return true;
}
int main()
{
//code
FAST_INP;
int T;
cin>>T;
while(T--)
{
//int n; cin>>n;
char board[9][9] = { { '5', '3', '.', '.', '7', '.', '.', '.', '.' },
{ '6', '.', '.', '1', '9', '5', '.', '.', '.' },
{ '.', '9', '8', '.', '.', '.', '.', '6', '.' },
{ '8', '.', '.', '.', '6', '.', '.', '.', '3' },
{ '4', '.', '.', '8', '.', '3', '.', '.', '1' },
{ '7', '.', '.', '.', '2', '.', '.', '.', '6' },
{ '.', '2', '.', '.', '.', '.', '2', '8', '.' },
{ '.', '.', '.', '4', '1', '9', '.', '.', '5' },
{ '.', '.', '.', '.', '8', '.', '.', '7', '9' } };;
cout<<isValidConfig(board, 9);
}
}