-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathsudoku.py
217 lines (184 loc) · 7.47 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
import tkinter as tk
from tkinter import messagebox, simpledialog
import random
class Sudoku:
def __init__(self, master):
self.master = master
self.board = [[0] * 9 for _ in range(9)]
self.solution = [[num for num in row] for row in self.board]
self.empty_cells = self.get_empty_cells(self.board)
self.create_widgets()
def create_widgets(self):
self.master.configure(bg='#ECECEC')
self.canvas = tk.Canvas(self.master, width=680,
height=680, bg='#F8C8DC', highlightthickness=0)
self.canvas.pack(side=tk.TOP, padx=0, pady=0)
self.draw_board()
self.button_frame = tk.Frame(self.master, bg='#ECECEC')
self.button_frame.pack(side=tk.TOP, pady=20)
self.check_button = tk.Button(self.button_frame, text='Check', font=('Inter', 12, 'bold'),
bg='#E75442', fg='#FFFFFF', bd=0, command=self.check_solution)
self.check_button.pack(side=tk.LEFT, padx=10)
self.solve_button = tk.Button(self.button_frame, text='Solve', font=('Inter', 12, 'bold'),
bg='#3AC6FF', fg='#FFFFFF', bd=0, command=self.solve_puzzle)
self.solve_button.pack(side=tk.LEFT, padx=10)
self.level_frame = tk.Frame(self.master, bg='#ECECEC')
self.level_frame.pack(side=tk.TOP, pady=0)
self.level_label = tk.Label(self.level_frame, text='Select Level:', font=(
'Inter', 12, "bold"), bg='#77DD77', fg='#ECECEC')
self.level_label.pack(side=tk.LEFT, padx=10)
self.level_var = tk.StringVar()
self.level_var.set('Easy')
self.level_dropdown = tk.OptionMenu(self.level_frame, self.level_var, 'Easy', 'Medium', 'Hard',
command=self.new_game)
self.level_dropdown.config(
font=('Arial', 12, "bold"), bg='#ffb347', fg='#ECECEC', bd=0)
self.level_dropdown.pack(side=tk.LEFT, padx=10)
self.new_game_button = tk.Button(self.level_frame, text='New Game', font=('Inter', 12, 'bold'),
bg='#FFD700', fg='#ECECEC', bd=0, command=self.new_game_wrapper)
self.new_game_button.pack(side=tk.LEFT, padx=10)
self.canvas.bind("<Button-1>", self.on_cell_click)
def new_game_wrapper(self):
level = self.level_var.get()
self.new_game(level)
def new_game(self, level):
if level == 'Easy':
num_cells = 40
elif level == 'Medium':
num_cells = 50
elif level == 'Hard':
num_cells = 60
self.board = [[0] * 9 for _ in range(9)]
self.generate_puzzle()
self.remove_cells(num_cells)
self.empty_cells = self.get_empty_cells(self.board)
self.draw_board()
def generate_puzzle(self):
self.solve_board(self.board)
for _ in range(81):
row = random.randint(0, 8)
col = random.randint(0, 8)
temp = self.board[row][col]
self.board[row][col] = 0
count = 0
solution_copy = [row[:] for row in self.board]
self.solve_board(solution_copy)
for i in range(9):
if 0 in solution_copy[i]:
count += 1
if count != 1:
self.board[row][col] = temp
def solve_board(self, board):
empty_cell = self.get_empty_cell(board)
if not empty_cell:
return True
row, col = empty_cell
for num in range(1, 10):
if self.is_valid_move(board, row, col, num):
board[row][col] = num
if self.solve_board(board):
return True
board[row][col] = 0
return False
def on_cell_click(self, event):
x, y = event.x, event.y
row, col = (y - 80) // 60, (x - 80) // 60
if self.board[row][col] != 0:
messagebox.showinfo(
'Invalid Move', 'Cannot change pre-filled cells!')
return
num = tk.simpledialog.askinteger(
'Input', 'Enter a number (1-9):', minvalue=1, maxvalue=9)
if num:
self.board[row][col] = num
self.draw_board()
def get_empty_cell(self, board):
for i in range(9):
for j in range(9):
if board[i][j] == 0:
return i, j
return None
def is_valid_move(self, board, row, col, num):
return (
self.is_valid_row(board, row, num)
and self.is_valid_col(board, col, num)
and self.is_valid_box(board, row - row % 3, col - col % 3, num)
)
def is_valid_row(self, board, row, num):
for i in range(9):
if board[row][i] == num:
return False
return True
def is_valid_col(self, board, col, num):
for i in range(9):
if board[i][col] == num:
return False
return True
def is_valid_box(self, board, start_row, start_col, num):
for i in range(3):
for j in range(3):
if board[start_row + i][start_col + j] == num:
return False
return True
def draw_board(self):
self.clear_board()
for i in range(9):
for j in range(9):
x = i * 60 + 80
y = j * 60 + 80
cell_value = self.board[j][i]
if cell_value != 0:
# Adjust the coordinates to avoid intersection
text_x = x + 15
text_y = y + 15
self.canvas.create_text(text_x, text_y, text=str(
cell_value), font=('Inter', 20, 'bold'), fill='#333333')
self.draw_grid()
def draw_grid(self):
for i in range(10):
if i % 3 == 0:
line_width = 2
else:
line_width = 1
self.canvas.create_line(
60 * i + 80, 80, 60 * i + 80, 620, width=line_width, fill='#333333')
self.canvas.create_line(
80, 60 * i + 80, 620, 60 * i + 80, width=line_width, fill='#333333')
def clear_board(self):
self.canvas.delete('all')
def check_solution(self):
for i in range(9):
for j in range(9):
if self.board[i][j] != self.solution[i][j]:
messagebox.showinfo(
'Incorrect', 'The solution is not correct!')
return
messagebox.showinfo(
'Correct', 'Congratulations! You solved the puzzle!')
def remove_cells(self, num_cells):
cells = [(i, j) for i in range(9) for j in range(9)]
random.shuffle(cells)
for i in range(num_cells):
row, col = cells[i]
self.board[row][col] = 0
def get_empty_cells(self, board):
empty_cells = []
for i in range(9):
for j in range(9):
if board[i][j] == 0:
empty_cells.append((i, j))
return empty_cells
def solve_puzzle(self):
solution_board = [row[:] for row in self.board]
if self.solve_board(solution_board):
self.solution = solution_board
self.board = solution_board
self.draw_board()
else:
messagebox.showinfo(
'Unsolvable', 'The puzzle does not have a solution.')
if __name__ == '__main__':
root = tk.Tk()
root.title('Sudoku')
gui = Sudoku(root)
root.mainloop()