Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 710 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 710 Bytes

ChessQueenPuzzle

GitHub GitHub last commit

Eight chess queens puzzle pretty well optimized solving algorithm. Program calculates and outputs all solutions to CLI.

CLI Example:

Board(1):
5 1 1 1 1 1 1 1
1 1 1 1 5 1 1 1
1 1 1 1 1 1 1 5
1 1 1 1 1 5 1 1
1 1 5 1 1 1 1 1
1 1 1 1 1 1 5 1
1 5 1 1 1 1 1 1
1 1 1 5 1 1 1 1

Integer 5 symbolizes queens position.

You can output all results to a file with command: ChessQueenPuzzle.exe > results.txt.