From 75c62870284de46e275f09921295b0e5810c2a04 Mon Sep 17 00:00:00 2001 From: fusunx <1102654482@qq.com> Date: Mon, 24 May 2021 08:29:50 +0800 Subject: [PATCH] =?UTF-8?q?0051N=E7=9A=87=E5=90=8E.md=20Javascript?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "problems/0051.N\347\232\207\345\220\216.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {