-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewOPBA.py
128 lines (98 loc) · 3.17 KB
/
newOPBA.py
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
import time
from config import activeConfig as c
stepcount = 0
timetosleep = 0
bfsCont = True
class EntryData:
def __init__(self, row, col, choices):
self.row = row
self.col = col
self.choices = choices
def setData(self, row, col, choices, choicesList = []):
self.row = row
self.col = col
self.choices = choices
self.choicesList = choicesList
def countChoices(matrix, i, j):
"""Gives the possible Numbers at a position on a sudoku grid. """
canPick = [True for _ in range(10)]
# canPick[0] = False
for k in range(9):
canPick[matrix[i][k]] = False
for k in range(9):
canPick[matrix[k][j]] = False
r = i//3
c = j//3
for row in range(r*3,(r+1)*3):
for col in range(c*3,(c+1)*3):
canPick[matrix[row][col]] = False
count = 0
outlist = []
for k in range(1,10):
if canPick[k]:
count+=1
outlist.append(k)
# print(outlist)
return count, outlist
# out=[]
# for num, value in enumerate(canPick):
# if value:
# out.append(num)
# return out
def bfs(matrix):
global bfsCont, stepcount
stepcount = 0
bfsCont = True
solveSudokuBFSHelper(matrix)
print(stepcount)
def canBeCorrect(matrix, row, col):
# Check Row
for c in range(9):
if matrix[row][col] != 0 and col != c and matrix[row][col] == matrix[row][c]:
return False
# Check Col
for r in range(9):
if matrix[row][col] != 0 and row != r and matrix[row][col] == matrix[r][col]:
return False
# Check Squares
r = row // 3
c = col // 3
for i in range(r * 3, r * 3 + 3):
for j in range(c * 3, c * 3 + 3):
if (row != i or col != j) and matrix[i][j] != 0 and matrix[i][j] == matrix[row][col]:
return False
return True
def solveSudokuBFSHelper(matrix):
global bfsCont, stepcount
stepcount += 1
if not bfsCont:
return
bestCandidate = EntryData(-1, -1, 100)
for i in range(9):
for j in range(9):
if matrix[i][j] == 0:
numChoices, choicesList = countChoices(matrix, i, j)
if bestCandidate.choices > numChoices:
bestCandidate.setData(i, j, numChoices, choicesList)
if bestCandidate.choices == 100:
bfsCont = False
return
row = bestCandidate.row
col = bestCandidate.col
# for j in range(1,10):
for j in bestCandidate.choicesList:
if not bfsCont:
return
matrix[row][col] = j
time.sleep(c.sleeptime)
# if canBeCorrect(matrix, row, col):
solveSudokuBFSHelper(matrix)
if not bfsCont:
return
matrix[row][col] = 0
if __name__ == "__main__":
testgrid = [[3, 4, 0, 0, 1, 0, 9, 0, 0], [0, 0, 1, 0, 0, 4, 0, 8, 3], [5, 0, 0, 0, 0, 0, 0, 1, 0], [9, 1, 0, 0, 5, 0, 0, 0, 0], [0, 6, 4, 0, 0, 0, 1, 3, 0], [0, 0, 0, 0, 8, 0, 0, 4, 9], [0, 8, 0, 0, 0, 0, 0, 0, 2], [2, 3, 0, 9, 0, 0, 4, 0, 0], [0, 0, 9, 0, 4, 0, 0, 5, 8]]
tic= time.perf_counter()
bfs(testgrid)
toc = time.perf_counter()
print(testgrid)