-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsudokusolver.cpp
More file actions
103 lines (94 loc) · 1.76 KB
/
sudokusolver.cpp
File metadata and controls
103 lines (94 loc) · 1.76 KB
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
// lets see if i can solve the classical newspaper problem sudoku solver with recursion !
#include <iostream>
using namespace std;
void placeNumber(int grid[][9],int i,int j)
{
for(int k=1;k<=9;k++)
{
if(placeRow(grid,i,j,k)&&placeCol(grid,i,j,k)&&placeMatrix(grid,i,j,k))
{
grid[i][j]=k;
if(SolveSudoku(grid)==true)
{
return true;
}
else
{
grid[i][j]=0;
}
}
}
return false;
}
bool placeRow(int grid[][9],int row,int col,int k)
{
for(int i=0;i<9;i++)
{
if(grid[row][i]==k)
{
return false;
}
}
return true;
}
bool placeCol(int grid[][9],int row,int col,int k)
{
for(int i=0;i<9;i++)
{
if(grid[i][col]==k)
{
return false;
}
}
return true;
}
bool placeMatrix(int grid[][9],int row,int col,int k)
{
int right= 2 - col%3;
int down = 2 - row%3;
int up = row%3;
int left= col%3;
}
bool SolveSudoku(int grid[9][9])
{
for(int i=0;i<9;i++)
{
for(int j=0;j<9;j++)
{
if(grid[i][j]==0)
{
placeNumber(grid,i,j);
}
}
}
}
//int grid[9][9]
void printGrid(int ar[9][9])
{
for(int i=0;i<9;i++)
{
for(int j=0;j<9;j++)
{
cout<<ar[i][j]<<" ";
}
cout<<endl;
}
}
int main()
{
// 0 means unassigned cells
int grid[9][9] = {{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)
printGrid(grid);
else
printf("No solution exists");
return 0;
}