Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

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.

Constraints:

  • 1 <= n <= 9
  • Each queen must be placed in a unique row and column
  • No two queens can be in the same diagonal

Examples:

Input: n = 4

Output: [[".Q..","...","....","...."],["...",".Q..","....","...."],["....","....",".Q..","...."],["....","....","....",".Q.."]]

Explanation: There are two solutions for n = 4: one with the queen in the first row and one with the queen in the second row.

Solutions

Backtracking

Time: O(N!)Space: O(N)

The backtracking approach is used to solve this problem. We start by initializing an empty board and then try to place a queen in each column of the current row. If it is safe to place a queen in a column, we make a recursive call to place queens in the next row. If it is not safe, we backtrack and try the next column.

function solveNQueens(n) {
  const board = Array(n)
    .fill('.')
    .map(() => Array(n).fill('.'));

  const result = [];

  function backtrack(row) {
    if (row === n) {
      result.push(board.map((row) => row.join('')));

      return;
    }

    for (let col = 0; col < n; col++) {
      if (isValid(board, row, col)) {
        board[row][col] = 'Q';

        backtrack(row + 1);

        board[row][col] = '.';
      }
    }
  }

  function isValid(board, row, col) {
    for (let i = 0; i < row; i++) {
      for (let j = 0; j < n; j++) {
        if (
          board[i][j] === 'Q' &&
          (j === col || Math.abs(j - col) === row - i)
        ) {
          return false;
        }
      }
    }

    return true;
  }

  backtrack(0);

  return result;
}

Difficulty: Hard

Category: Backtracking

Frequency: High

Company tags:

GoogleAmazonMicrosoft