Skip to content

Commit

Permalink
0051N皇后.md Javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
fusunx committed May 24, 2021
1 parent 3fa29e0 commit 75c6287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0051.N皇后.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ func solveNQueens(n int) [][]string {
```

Javascript:
```
```Javascript
var solveNQueens = function(n) {
function isValid(row, col, chessBoard, n) {

Expand Down

0 comments on commit 75c6287

Please sign in to comment.