Skip to content
This repository was archived by the owner on Apr 27, 2025. It is now read-only.

Commit 7cf4d1e

Browse files
authored
Update 37. Sudoku Solver.md
1 parent fe57464 commit 7cf4d1e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

37. Sudoku Solver.md

-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ class Solution {
107107
var row = [Set<Character>].init(repeating: Set<Character>(), count: 9)
108108
var block = [Set<Character>].init(repeating: Set<Character>(), count: 9)
109109
var points = [(p: (x: Int, y: Int), c: Int)]()
110-
var points = [(p: (x: Int, y: Int), c: Int)]()
111110
for y in 0..<9 {
112111
let c = board[y][x]
113112
guard c != "." else {

0 commit comments

Comments
 (0)