Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/n1ghtf1re/eight-queens-puzzle
- Owner: N1ghtF1re
- Created: 2018-03-17T06:54:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T07:10:36.000Z (almost 7 years ago)
- Last Synced: 2024-10-31T13:24:21.369Z (about 2 months ago)
- Topics: bsuir, chess-puzzle, delphi, eight-queen-problem, eight-queens-puzzle
- Language: Pascal
- Size: 1.01 MB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)