Back to all solutions
#52 - N-Queens II
Problem Description
The n-queens puzzle is the problem of placing n queens on an n x n chessboard such that no two queens attack each other.
Given an integer n, return the number of distinct solutions to the n-queens puzzle.
Solution
/**
* @param {number} n
* @return {number}
*/
var totalNQueens = function(n) {
const result = [];
backtrack(result, n);
return result.length;
};
function backtrack(result, n, board = [], size = 0) {
if (n === size) {
result.push(board.map(s => `${'.'.repeat(s)}Q${'.'.repeat(n - s - 1)}`));
} else {
for (let rows = 0; rows < n; rows++) {
const isValid = !board.some((i, j) => {
return i === rows || i === rows + size - j || i === rows - size + j;
});
if (isValid) {
board.push(rows);
backtrack(result, n, board, size + 1);
board.pop();
}
}
}
}