Queen’s Day
Informatics, Mathematics, Uncategorized | (0)
The eight queens puzzle is the problem of placing eight chess queens on an 8x8 chessboard such that none of them are able to capture any other using the standard chess queen's moves. This puzzle can be generalized to the problem of placing n queens on a nxn chessboard. This c++ program finds solutions to this problem using a recursive backtracking algorithm.