- Is it possible to put 8 chess queens on a 8x8 chess?
- if yes, is there other solutions? How many?
- is it possible on different board size (4x4, 10x10, 3x3...) to have a solution?
- Can place and remove queen manually
- Pretty Command line with colors (zoom your terminal !)
- Showing queen view
- true chessboard coordinate !
- Can solve the problem (backtracking)
Note:
- Linux terminal like (with UTF-8 support) only for now (because of the colors)
- Can work on windows (I think) if you get a Linux terminal (to support ANSI colors)
- requires boost (algorithm/string)
Using cmake :)
- mkdir build
- cd build
- cmake ..
- make
- launch:
./build/queen_problem
- enjoy !