Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/n1ghtf1re/eight-queens-puzzle

The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solution requires that no two queens share the same row, column, or diagonal.
https://github.com/n1ghtf1re/eight-queens-puzzle

bsuir chess-puzzle delphi eight-queen-problem eight-queens-puzzle

Last synced: 10 days ago
JSON representation

The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solution requires that no two queens share the same row, column, or diagonal.

Awesome Lists containing this project

README

        

# Eight-queens-puzzle

About task
--------------------
The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solution requires that no two queens share the same row, column, or diagonal.

About program
--------------------
The program calculates and displays all 92 possible combinations of the queens.

Algorithm scheme:
--------------------
![Algorithm scheme](https://github.com/N1ghtF1re/Eight-queens-puzzle/blob/master/docs/scheme.png)