-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSudoko.cpp
140 lines (129 loc) · 3.01 KB
/
Sudoko.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#include <bits/stdc++.h>
using namespace std;
// #define N 9
// bool usedInRow(vector<vector<int>> &grid, int row, int num)
// {
// for (int i = 0; i < N; ++i)
// {
// if (grid[row][i] == num)
// {
// return true;
// }
// }
// return false;
// }
// bool usedInCol(vector<vector<int>> &grid, int col, int num)
// {
// for (int i = 0; i < N; ++i)
// {
// if (grid[i][col] == num)
// {
// return true;
// }
// }
// return false;
// }
// bool usedInBox(vector<vector<int>> &grid, int row, int col, int num)
// {
// for (int i = 0; i < 3; i++)
// {
// for (int j = 0; j < 3; j++)
// {
// if (grid[row + i][col + j] == num)
// {
// return true;
// }
// }
// }
// return false;
// }
// bool isSafe(vector<vector<int>> &grid, int row, int col, int num)
// {
// return (!usedInRow(grid, row, num) &&
// !usedInCol(grid, col, num) &&
// !usedInBox(grid, row - row % 3, col - col % 3, num));
// }
// bool unassigned(vector<vector<int>> &grid, int &row, int &col)
// {
// for (row = 0; row < N; row++)
// {
// for (col = 0; col < N; col++)
// {
// if (grid[row][col] == 0)
// {
// return true;
// }
// }
// }
// return false;
// }
// bool solveSudoku(vector<vector<int>> &grid)
// {
// int row, col;
// //non empty -means all sudoko filled
// if (!unassigned(grid, row, col))
// {
// return true;
// }
// for (int i = 1; i <= 9; ++i)
// {
// if (isSafe(grid, row, col, i))
// {
// grid[row][col] = i;
// if (solveSudoku(grid))
// {
// return true;
// }
// // backtracking
// grid[row][col] = 0;
// }
// }
// return false;
// }
// int main(int argc, char const *argv[])
// {
// vector<vector<int>> grid = {
// {3, 0, 6, 5, 0, 8, 4, 0, 0},
// {5, 2, 0, 0, 0, 0, 0, 0, 0},
// {0, 8, 7, 0, 0, 0, 0, 3, 1},
// {0, 0, 3, 0, 1, 0, 0, 8, 0},
// {9, 0, 0, 8, 6, 3, 0, 0, 5},
// {0, 5, 0, 0, 9, 0, 6, 0, 0},
// {1, 3, 0, 0, 0, 0, 2, 5, 0},
// {0, 0, 0, 0, 0, 0, 0, 7, 4},
// {0, 0, 5, 2, 0, 6, 3, 0, 0}};
// if (solveSudoku(grid) == true)
// for (vector<int> row : grid)
// {
// for (int cell : row)
// {
// cout << cell << "\t";
// }
// cout << "\n";
// }
// else
// cout << "No solution exists";
// return 0;
// }
void solvesudoku(int board[9][9],int i,int j)
{
int ni=0;
int nj=0;
if(j==8)
{
nj = 0;
ni= i+1;
}
}
int main()
{
int board[9][9];
for(int i=0;i<9;i++)
{
for(int j=0;j<9;j++)
{
cin>>board[i][j];
}
}
solvesudoku(board,0,0);
}