Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 330 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 330 Bytes

8-Queens-Problem

Realisation of the solution for the 8 Queens problem

Written in OOP paradigm so that the code is absolutely flexible.

Uses a recursive algotithm.

Normally, works up to 16x16 size board (int size = 16).

For each start_row finds one solution.

Possibly, can find all the solutions if code be change a little.