-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNqueens.py
49 lines (34 loc) · 965 Bytes
/
Nqueens.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
''' N-1 queens on N*N board '''
N = int(input().strip())
def printChess(board):
for i in range(N):
for j in range(N):
print (board[i][j], end = " ")
def safe(board, row, col):
for i in range(col):
if board[row][i] == 1:
return False
for i, j in zip(range(row, -1, -1),
range(col, -1, -1)):
if board[i][j] == 1:
return False
for i, j in zip(range(row, N, 1),
range(col, -1, -1)):
if board[i][j] == 1:
return False
return True
def solveQueens(board,col):
if col >= N:
return True
for i in range(N):
if safe(board,i,col):
board[i][col]=1
if solveQueens(board,col+1)==True:
return True
board[i][col]=0
return False
def solve(n):
board = [[0]*n]*n
solveQueens(board,0)
printChess(board)
solve(N)