Quick Queens Guide
What is N-Queens?
A classic combinatorial puzzle that involves placing N chess queens on an N x N chessboard so that no two queens can attack each other.
The Problem
Place N queens on an N×N board so no two attack each other.
Attacks Rule
Queens can attack horizontally, vertically, and diagonally across any distance.
The Solver
Try the min-conflicts solver or place queens manually to learn how conflicts arise.
Real-time Visualization
Use the visualizer to see conflicts highlighted instantly and track the AI solver's step-by-step progress.