Skip to content

Commit 95d8c1a

Browse files
README.me
The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other. For example, following is a solution for 4 Queen problem. { 0, 1, 0, 0} { 0, 0, 0, 1} { 1, 0, 0, 0} { 0, 0, 1, 0}
1 parent 4a8347f commit 95d8c1a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

N-Queens/Python/README.me

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other. For example, following is a solution for 4 Queen problem.
2+
3+
{ 0, 1, 0, 0}
4+
{ 0, 0, 0, 1}
5+
{ 1, 0, 0, 0}
6+
{ 0, 0, 1, 0}

0 commit comments

Comments
 (0)