-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsudoku.py
120 lines (98 loc) · 3.09 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
board = [
[7, 8, 0, 4, 0, 0, 1, 2, 0],
[6, 0, 0, 0, 7, 5, 0, 0, 9],
[0, 0, 0, 6, 0, 1, 0, 7, 8],
[0, 0, 7, 0, 4, 0, 2, 6, 0],
[0, 0, 1, 0, 5, 0, 9, 3, 0],
[9, 0, 4, 0, 6, 0, 0, 0, 5],
[0, 7, 0, 3, 0, 0, 0, 1, 2],
[1, 2, 0, 0, 0, 7, 4, 0, 0],
[0, 4, 9, 2, 0, 6, 0, 0, 7],
]
# board = [
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# [0, 0, 0, 0, 0, 0, 0, 0, 0],
# ]
counter = 0
def solve(bo, input): # function to solve a board that has been given too it
global counter
counter += 1
if counter > 1000:
print("Board cannot be solved")
exit()
find = find_empty(bo)
if not find:
return True # base case of our recursive algorithm
else:
row, col = find
for i in range(1, 10):
if valid(bo, i, (row, col)):
bo[row][col] = i
if solve(bo, input):
return True
bo[row][col] = 0
if input == 1: # prints each step of solving if the user wants to see it
print("Step # ", counter, " :")
print_board(bo)
return False
def valid(
bo, num, pos
): # function to check if we can insert a given number into a given spot
# check if the row is valid
for i in range(len(bo[0])):
if num == bo[pos[0]][i] and pos[1] != i:
return False
# now we check the column
for i in range(len(bo)):
if num == bo[i][pos[1]] and pos[0] != i:
return False
# now we want to check the box
# first thing we do is find out the coordinates of the box we are in
box_x = pos[1] // 3
box_y = pos[0] // 3
for i in range(box_y * 3, box_y * 3 + 3):
for j in range(box_x * 3, box_x * 3 + 3):
if bo[i][j] == num and (i, j) != pos:
return False
# making it through all these checks means that the entry is valid
return True
def print_board(bo): # function to print a given board
print("- - - - - - - - -")
for i in range(len(board)):
if (i) % 3 == 0 and i != 0 and i != 8:
print("- - - - - - - - -")
for j in range(len(bo[0])):
if j % 3 == 0 and j != 0:
print("|", end="")
if j == 8:
print(bo[i][j])
else:
print(str(bo[i][j]) + " ", end="")
print("- - - - - - - - -")
print()
def find_empty(bo): # function to find the first empty space on a given board
for i in range(len(bo)):
for j in range(len(bo[0])):
if bo[i][j] == 0:
return (i, j) # row, col
return None
counter = 0
print("Initial Board:") # displays initial board
print_board(board)
user_input = input(
"Would you like to see all the steps? (y/n): "
) # prompts for user input
if user_input == "y":
user_input = 1
else:
user_input = 0
solve(board, user_input)
print("Final Board;")
print_board(board)