Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 76 additions & 0 deletions Python/sudoku.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
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]
]

def print_board(bo):
for i in range(len(bo)):
if(i%3==0 and i):
print("- - - - - - - - - - - - - -")
for j in range(len(bo[0])):
if(j%3==0):
print( " | " , end = " ")
if(j==8):
print(str(bo[i][j]) + "|" )
else:
print(str(bo[i][j]) + " " , end = "")
print()

def find_empty(bo):
for i in range(len(bo)):
for j in range(len(bo[0])):
if bo[i][j] == 0:
return (i, j) # row, col

return 0;

def valid(bo, num, pos):
for i in range(len(bo[0])):
if(bo[pos[0]][i]==num and i!=pos[1]):
return 0
for i in range(len(bo)):
if(bo[i][pos[1]]==num and i!=pos[0]):
return 0
box_x = pos[0] // 3
box_y = pos[1] // 3

for i in range(box_x*3, box_x*3 + 3):
for j in range(box_y*3, box_y*3 + 3):
if(bo[i][j] == num and (i,j) != pos):
return 0;
return 1;

# Main Function

def solve(bo):
pos = find_empty(bo)
if not pos:
return 1;
else:
row,col = pos

for i in range(1,10):
if(valid(bo,i,(row,col))):
bo[row][col] = i;

if solve(bo):
return 1;

bo[row][col] = 0;

return 0;

print_board(board)

solve(board)

print("Solved",'\n')

print_board(board)