未验证 提交 358f56f9 编写于 作者: D David Leal

docs: Minor correction

上级 de5f695a
......@@ -97,7 +97,7 @@ void solveNQ(std::array<std::array<int, n>, n> board, const int &col) {
// Place this queen in matrix
board[i][col] = 1;
// Recur to place rest of the queens
// Recursive to place rest of the queens
solveNQ<n>(board, col + 1);
board[i][col] = 0; // backtrack
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册