Skip to content

Commit d14674e

Browse files
authored
Update index.ts
1 parent 3a81904 commit d14674e

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

valid-sudoku/index.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
/*
2-
* @lc app=leetcode.cn id=36 lang=typescript
3-
*
4-
* [36] 有效的数独
5-
*/
61

7-
// @lc code=start
82
export default function isValidSudoku(board: string[][]): boolean {
93
const rows = new Array(9).fill(0).map(() => new Set<string>());
104
const columns = new Array(9).fill(0).map(() => new Set<string>());

0 commit comments

Comments
 (0)