Queens Game Online - Free Interactive Puzzle

Play the viral queens puzzle game directly in your browser. No download required. Choose from board sizes 4 through 15 and challenge your logic skills right now.

What is the Queens Game?

The Queens Game is a classic logic puzzle derived from chess. The goal is deceptively simple: place a set of queens on a grid so that no two queens can attack each other. In chess, a queen can move any number of squares horizontally, vertically, or diagonally, which means each queen "controls" an entire row, column, and two diagonals simultaneously. Your challenge is to find a placement where every queen is safe from every other.

The most famous version is the 8 Queens Puzzle, played on a standard 8×8 chessboard with 8 queens. Mathematicians have studied this problem since the 1840s when chess composer Max Bezzel first posed it. The 8×8 board has exactly 92 distinct solutions, and only 12 of those are "fundamental" (the rest are reflections and rotations).

In 2024 and 2025, a colored-region variant called LinkedIn Queens went viral across social media and professional networks. In that version, the board is divided into colored regions, and each region must contain exactly one queen. This added constraint dramatically reduces the solution space and makes the puzzle approachable for newcomers while still rewarding careful logical deduction. Our site lets you play both the classic N-Queens version and think through the same kind of spatial reasoning that made the LinkedIn Queens game so popular.

Whether you call it the queens game, the queens puzzle, or the N-queens problem, the core cognitive challenge is the same: systematic elimination, constraint propagation, and pattern recognition. It is one of the most studied constraint-satisfaction problems in computer science, appearing in every introductory algorithms textbook as the canonical example of backtracking search.

How to Play Queens Online

Playing the Queens Game on our site is instant and requires no account or download. Here is a step-by-step guide to get started:

  1. Choose your board size. Visit the play page and select a board size from 4 to 15 using the size selector. Beginners should start with a 4×4 board, which has only 2 solutions.
  2. Click to place a queen. Click any empty cell on the board to place a queen there. The board will immediately highlight any conflicts in red.
  3. Resolve conflicts. If two queens attack each other (same row, column, or diagonal), their cells are highlighted. Remove one of the conflicting queens and try a different position.
  4. Fill the board. You must place exactly N queens on an N×N board. The puzzle is solved when all N queens are placed with no conflicts.
  5. Use hints if needed. Tap the Hint button to reveal a safe placement for one queen. Use sparingly to preserve the challenge!
  6. Undo mistakes. The Undo button removes the last queen you placed so you can try a different approach without restarting.
  7. Check the timer. Challenge yourself to beat your best time and track your improvement over multiple sessions.

Once you solve the puzzle, the board will show a success animation and display your completion time. You can then shuffle to a new arrangement or increase the board size for a harder challenge. The Queens Game Strategy guide has tips to help you solve puzzles faster as you progress.

Interactive Board Features

Our online Queens Game board is designed to be both powerful for serious solvers and welcoming for first-time players. Here is what you get:

  • Multiple board sizes (4–15): Fourteen different board sizes let you progress from beginner-friendly 4×4 all the way to the expert-level 15×15, which has millions of solutions but is extremely hard to find by hand.
  • Instant conflict feedback: Conflicting queens are highlighted in real time so you can see the problem the moment it occurs rather than discovering it at the end.
  • Hint system: Stuck? The hint engine uses a backtracking solver to suggest a valid queen placement, giving you just enough help to keep moving without spoiling the solution.
  • Undo button: Remove your last move at any time. There is no limit on undos, so experimentation is always possible.
  • Auto-solve: If you want to see a full solution without solving it yourself, the auto-solve button will animate through a complete valid placement. Great for learning strategy by example.
  • Built-in timer: Each session is timed from the moment you place your first queen. This encourages improvement and makes the puzzle feel like a daily challenge.
  • Mobile-friendly design: The board works on phones and tablets with touch input, so you can play on the go.
  • No login required: Everything is free and anonymous. Just open the page and play.

These features make our board one of the most complete free online implementations of the Queens Game available. Compare it to other sites and you will find that most only offer a single board size with no hints or undo functionality.

Queens Game Variants

The Queens Game has spawned several interesting variants over the years. Understanding the differences helps you appreciate the depth of the puzzle family:

Classic N-Queens

The original formulation: place N queens on an N×N board so no two share a row, column, or diagonal. This is what our play page implements. Solution counts grow rapidly with board size — 8×8 has 92, but 12×12 has 14,200.

Colored-Region Queens (LinkedIn Style)

Popularized by LinkedIn in 2024, this variant divides the board into colored regions. Each row, column, and color region must contain exactly one queen. The added color constraint means there is typically only one solution, and the puzzle is designed to be solvable through pure logic without guessing. If you enjoyed the LinkedIn Queens game, the classic N-Queens is your next step — it is harder but uses the same spatial reasoning skills.

Toroidal Queens

In the toroidal (or modular) variant, the board wraps around: a queen on the far right also attacks the far left, and a queen on the top also attacks the bottom. This changes the diagonal structure significantly and requires a fundamentally different approach.

SuperQueens

A queen that also attacks like a knight from chess. This makes the problem far more constrained and reduces solution counts dramatically — no solution exists for boards smaller than 10×10.

Start with the classic 8 Queens and once you master it, explore the N-Queens variations for progressively harder challenges.

Why Play Queens? Benefits and Brain Training

The Queens Game is far more than entertainment. Research on puzzle-solving and cognitive training suggests that logic puzzles like N-Queens provide measurable benefits:

  • Logical reasoning: Every placement requires evaluating multiple constraints simultaneously. Regular practice strengthens the ability to hold several rules in mind at once — a skill that transfers to mathematics, programming, and strategic planning.
  • Pattern recognition: Experienced solvers begin to recognize safe starting configurations and dangerous patterns. This same skill is valuable in chess, coding interviews, and data analysis.
  • Algorithmic thinking: The Queens Game is the canonical introductory example for backtracking algorithms in computer science education. Playing it manually builds the intuition that underlies backtracking search and constraint propagation — skills tested in technical interviews at top tech companies.
  • Persistence and patience: Larger boards require systematic, methodical work. This builds cognitive endurance — the ability to stay focused on a multi-step problem without giving up.
  • Stress-free challenge: Unlike competitive games, the Queens Game has no time pressure (unless you choose the timer mode), no opponents, and a guaranteed solution. This makes it a relaxing yet mentally stimulating activity.

Many computer science educators use the Queens Puzzle as an introduction to algorithm design. The problem is easy enough to understand in minutes but deep enough to occupy researchers for decades. Whether you are a student, a professional, or simply someone who enjoys brain teasers, the Queens Game offers lasting value.

Play the Queens Game Now

Ready to start? Choose your preferred board size below. If this is your first time, we recommend the 4×4 board to get familiar with the rules, then move up to 8×8 for the classic experience.

Play Queens Game (Any Size)

Access the full interactive board with all sizes from 4 to 15. Pick your difficulty and start solving immediately.

Beginner: 4x4 Board

New to the Queens Game? Start with the 4x4 board. Only 2 solutions make this a perfect introduction to the rules.

Classic: 8x8 Board

The original 8 Queens Puzzle on a standard chessboard. 92 solutions to discover. The most famous version of the game.

Frequently Asked Questions

What is the Queens Game?

The Queens Game is a logic puzzle where you place N queens on an N×N board so that no two queens share the same row, column, or diagonal. No queen can attack any other. It originated from chess (where the queen is the most powerful piece) and has been studied since the 1840s. It is also known as the N-Queens Problem or Eight Queens Puzzle.

Is the Queens Game free to play?

Yes, completely free. Our online Queens Game requires no payment, no subscription, and no account. Simply visit the play page and start solving immediately.

Do I need to download anything?

No download is required. The Queens Game runs entirely in your web browser using standard HTML, CSS, and JavaScript. It works on desktop computers, laptops, tablets, and smartphones without installing any software.

What board sizes are available?

We offer board sizes from 4×4 to 15×15, giving you 12 different difficulty levels. The 4×4 board has 2 solutions, the 8×8 has 92, and the 15×15 has over 2 billion. Each size offers a meaningfully different challenge.

How is this different from the LinkedIn Queens game?

The LinkedIn Queens game uses a colored-region variant where the board is divided into colored areas and each area must contain exactly one queen. Our game implements the classic N-Queens formulation where the only constraints are rows, columns, and diagonals — no color regions. Both require the same fundamental spatial reasoning, so practicing the classic version will improve your LinkedIn Queens performance too.