Skip to content
QuizMaker logoQuizMaker
Activity
DSA Course: Interview Patterns and Problem Solving
Module 11: Recursion & Backtracking
Best Time to Buy and Sell Stock: Greedy Pattern
Maximum Subarray: Kadane Pattern
Move Zeroes: Two pointers Pattern
Contains Duplicate: Set Pattern
Valid Anagram: Frequency map Pattern
Longest Substring Without Repeating Characters: Sliding window Pattern
Valid Palindrome: Two pointers Pattern
Longest Palindromic Substring: Expand around center Pattern
Group Anagrams: Hash key Pattern
Binary Search: Classic search Pattern
Search Insert Position: Lower bound Pattern
First Bad Version: Predicate search Pattern
Search in Rotated Sorted Array: Rotated search Pattern
Find Minimum in Rotated Sorted Array: Rotated minimum Pattern
Valid Parentheses: Stack matching Pattern
Min Stack: Auxiliary stack Pattern
Daily Temperatures: Monotonic stack Pattern
Next Greater Element I: Monotonic stack Pattern
Evaluate Reverse Polish Notation: Stack evaluation Pattern
Reverse Linked List: Pointer reversal Pattern
Merge Two Sorted Lists: Dummy node Pattern
Linked List Cycle: Fast and slow pointers Pattern
Middle of the Linked List: Fast and slow pointers Pattern
Remove Nth Node From End: Two pointers Pattern
Binary Tree Traversals: DFS recursion Pattern
Maximum Depth of Binary Tree: Height recursion Pattern
Binary Tree Level Order Traversal: BFS queue Pattern
Validate Binary Search Tree: Range bounds Pattern
Lowest Common Ancestor: Recursive split Pattern
Connected Components: Adjacency DFS Pattern
Number of Islands: Grid DFS Pattern
Flood Fill: Boundary DFS Pattern
Clone Graph: Hash Map DFS Pattern
Course Schedule: Topological Sort Pattern
Union Find Components: Disjoint Set Pattern
Shortest Path in Unweighted Graph: BFS Distance Pattern
Climbing Stairs: Fibonacci DP Pattern
House Robber: Pick or Skip DP Pattern
Coin Change: Minimum Coins DP Pattern
Longest Increasing Subsequence: Binary Search DP Pattern
Longest Common Subsequence: 2D DP Pattern
0/1 Knapsack: Capacity DP Pattern
Longest Consecutive Sequence: Hash Set Pattern
Subarray Sum Equals K: Prefix Sum Hashmap Pattern
First Unique Character: Frequency Map Pattern
Find Duplicates: Frequency Map Pattern
Ransom Note: Character Availability Pattern
Sort Colors: Dutch National Flag Pattern
Next Permutation: Pivot and Suffix Reversal Pattern
Merge Intervals: Sort and Sweep Pattern
Find First and Last Position: Boundary Binary Search Pattern
Search a 2D Matrix: Flattened Binary Search Pattern
Subsets: Pick or Skip Recursion Pattern
Generate Parentheses: Valid State Backtracking Pattern
Combination Sum: Reuse Choice Backtracking Pattern
N-Queens: Constraint Backtracking Pattern
Word Search: Grid Backtracking Pattern
Kth Largest Element: Size-K Min-Heap Pattern
Top K Frequent Elements: Frequency Heap Pattern
Merge K Sorted Lists: Min-Heap Multiway Merge Pattern
Median Finder: Two Heaps Pattern
Task Scheduler: Greedy Max-Heap Pattern
Jump Game: Farthest Reach Greedy Pattern
Gas Station: Greedy Reset Pattern
Non-overlapping Intervals: Earliest End Greedy Pattern
Minimum Arrows to Burst Balloons: Interval End Greedy Pattern
Partition Labels: Last Occurrence Greedy Pattern
Single Number: XOR Cancellation Pattern
Power of Two: n and n-1 Pattern
Number of 1 Bits: Brian Kernighan Pattern
Single Number III: Rightmost Set Bit Pattern
XOR From 1 to N: Modulo Cycle Pattern
Prime Check: Square Root Trial Division Pattern
Sieve of Eratosthenes: Prime Marking Pattern
GCD: Euclidean Remainder Pattern
Binary Exponentiation: Fast Power Pattern
Modular Inverse: Extended Euclid Pattern
Implement Trie: Prefix Tree Pattern
Longest Common Prefix: Single Branch Trie Pattern
LRU Cache: Hash Map Plus Recency List Pattern
Segment Tree: Range Sum Query Pattern
Fenwick Tree: Binary Indexed Prefix Sum Pattern
CONTENTS

N-Queens: Constraint Backtracking Pattern

Place queens row by row while tracking blocked columns and diagonals.

DSA Course: Interview Patterns and Problem Solving
Module 11: Recursion & Backtracking
dsa
recursion-backtracking
+1
May 29, 2026
24
A

Learning Outcome

After this lesson, you should be able to encode board constraints with column and diagonal sets.

Problem Statement

Given n, return all distinct ways to place n queens on an n x n board so no two queens attack each other.

InputOutputWhy
n = 4two valid boardsFor n = 4 there are exactly two valid queen placements.

Brute Force Approach

Try placements and scan the whole board each time to check safety. This repeats expensive checks.

Optimized Approach

Place one queen per row and track used columns, row-col diagonals, and row+col diagonals in sets.

Exact Pseudocode

dfs(row):
  if row == n:
    answer.add(copy(board))
    return
  for col from 0 to n - 1:
    if col or diagonals are blocked:
      continue
    place queen
    mark col and diagonals
    dfs(row + 1)
    remove queen and marks
dfs(0)

Reference Code

class Solution:
    def solveNQueens(self, n):
        answer = []
        board = [["."] * n for _ in range(n)]
        cols, diag1, diag2 = set(), set(), set()

        def dfs(row):
            if row == n:
                answer.append(["".join(r) for r in board])
                return

            for col in range(n):
                if col in cols or row - col in diag1 or row + col in diag2:
                    continue

                cols.add(col)
                diag1.add(row - col)
                diag2.add(row + col)
                board[row][col] = "Q"
                dfs(row + 1)
                board[row][col] = "."
                cols.remove(col)
                diag1.remove(row - col)
                diag2.remove(row + col)

        dfs(0)
        return answer

Sample Dry Run

StepStateResult
Row 0Try a column and mark diagonalsMove to row 1
Row 1Blocked columns and diagonals are skippedOnly safe cells are tried
Dead endNo safe column existsBacktrack and remove marks
row == nAll rows placedCopy one board

Complexity

MeasureValueReason
TimeO(n!)Backtracking prunes many placements, but the search is still factorial scale.
SpaceO(n^2)The board uses n^2 space and the sets use O(n).

Edge Cases

  • n = 1 has one solution.
  • n = 2 and n = 3 have no solutions.
  • Diagonal keys are row - col and row + col.

Interview Checklist

  • Place exactly one queen per row.
  • Use sets for O(1) conflict checks.
  • Remove all marks during backtracking.

FAQs

Why one queen per row?

Every valid board needs exactly one queen in each row, so row-by-row search reduces choices.

Why row - col and row + col?

Cells on the same diagonals share these values.

What is the core pattern?

Constraint backtracking.

Share this article

Share on TwitterShare on LinkedInShare on FacebookShare on WhatsAppShare on Email

Test your knowledge

Take a quick quiz based on this chapter.

hardDSA Course
N-Queens - Constraint Backtracking Pattern Practice Quiz
5 questions8 min

0 comments

Please login to comment.
No comments yet.
Lesson 4 of 5 in Module 11: Recursion & Backtracking
Previous in Module 11: Recursion & Backtracking
Combination Sum: Reuse Choice Backtracking Pattern
Next in Module 11: Recursion & Backtracking
Word Search: Grid Backtracking Pattern
Back to DSA Course: Interview Patterns and Problem Solving
Back to moduleCategories