-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku.py
236 lines (179 loc) · 6.28 KB
/
sudoku.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
import random
class Sudoku:
num_rows = 9
num_columns = 9
def __init__(self):
self.board = [] #board[row][col]
self.count_list = [0,0,0,0,0,0,0,0,0]
for i in range(self.num_rows):
self.board.append([' '] * self.num_columns)
def print_board(self):
"""Prints the formatted Sudoku board."""
line = "---------------------"
for i, row in enumerate(self.board):
row_string = ""
for j, col in enumerate(row):
if j == 3 or j == 6:
row_string += "| "
row_string += str(row[j]) + " "
print(row_string)
if i == 2 or i == 5:
print(line)
def get_board(self):
return self.board
def check_empty_space(self, row, column):
"""Return true iff position (row, column) of the board is empty."""
return self.board[row][column] == ' '
def check_full_board(self): #rows then columns
"""Returns true iff the board is filled."""
for row in self.board:
for column_of_row in row:
if column_of_row == ' ':
return False
return True
def return_row(self, num_row):
"""Returns row #NUM of the board as a list."""
result = []
for i in range(self.num_columns):
result.append(self.board[num_row][i])
return result
def return_col(self, num_col):
"""Returns column #NUM of the board as a list."""
result = []
for i in range(self.num_rows):
result.append(self.board[i][num_col])
return result
def return_box(self, num):
"""
Returns a 3x3 subgrid of the board as a list.
Board indexed as:
1 2 3
4 5 6
7 8 9,
where each index represents a 3x3 subgrid.
"""
result = []
three = [0, 1, 2]
for a in three: #row
for b in three: #column
result += [self.board[a+((num-1)//3)*3][b+(num%3-1)*3]]
return result
def place_num(self, num, row, column):
self.board[row][column] = num
#Allan's space
def check_box(self, num, box_num):
"""
this method checks if a specific box already has a specific number
@self is the board object
@num is the specific number being checked
@box_num is the box number of the board in row major order, starting from 1
@return returns true if the box already has the number, false otherwise
"""
box = self.return_box(box_num)
for board_num in box:
if num == board_num:
return True
return False
def check_column(self, num, num_col):
"""
same logic as check_box, except starting at 0
"""
col = self.return_col(num_col)
for board_num in col:
if num == board_num:
return True
return False
def check_row(self, num, num_row):
"""
same logic as check
"""
row = self.return_row(num_row)
for board_num in row:
if num == board_num:
return True
return False
def what_box(self, i, j):
if i <= 2:
if j <= 2:
return 1
elif j <= 5:
return 2
else:
return 3
elif i <= 5:
if j <= 2:
return 4
elif j< 5:
return 5
else:
return 6
else:
if j <= 2:
return 7
elif j <= 5:
return 8
else:
return 9
#end of Allan's space
#Michelle's space
def done(self):
print("Solution is:")
self.print_board()
return True
def solve(self):
"""
Backtracking algorithm for the sudoku solver. Takes in a Sudoku board;
returns true iff algorithm successful, false otherwise.
"""
# If board is filled, board is trivially solved
if self.check_full_board():
return self.done
# Iterate over every square in the board
for row in range(self.num_rows):
for col in range(self.num_columns):
# If square is empty, begin plugging in possible values
if self.check_empty_space(row, col):
for val in range(1, 10):
if not self.check_row(val, row) and \
not self.check_column(val, col) and \
not self.check_box(val, self.what_box(row, col)):
self.board[row][col] = val
if self.solve():
return self.done()
# Didn't work; undo assigment
self.board[row][col] = ' '
# Bad path; backtrack
return False
#end of Michelle's space
#Jerry's space
#if not enough to fill all columns, will leave rest of columns blank
def num_to_rows(self, row):
'''Type in a number in a row '''
def reverse_number(number):
num = 0
while number > 0:
num *= 10
num += number%10
number //= 10
return num
# row = int(input('Row number: '))
print("Put Zeros as blanks")
numbers = int(input('Numbers to add to ' + str(row) + ': '))
numbers = reverse_number(numbers)
col = 0
while numbers > 0:
if numbers%10 != 0:
self.place_num(numbers%10, row, col)
numbers //= 10
col += 1
def manual_fill(self):
for i in range(self.num_rows):
print("Row " + str(i) + ": ")
self.num_to_rows(i)
def random_fill(self):
for row in range(self.num_rows):
for col in range(self.num_columns):
num = random.randrange(10)
if num != 0:
self.place_num(num, row, col)
#end of Jerry's space