diff --git "a/problems/0051.N\347\232\207\345\220\216.md" "b/problems/0051.N\347\232\207\345\220\216.md" index f6183bbfe3..5242fce2ae 100644 --- "a/problems/0051.N\347\232\207\345\220\216.md" +++ "b/problems/0051.N\347\232\207\345\220\216.md" @@ -431,7 +431,7 @@ func solveNQueens(n int) [][]string { ``` Javascript: -``` +```Javascript var solveNQueens = function(n) { function isValid(row, col, chessBoard, n) {