The Question
Coding
N-Queens Problem
Given an integer n, return all distinct solutions to the N-Queens puzzle, where n queens must be placed on an n×n chessboard such that no two queens attack each other.
Java
Backtracking
January 28, 2026