update 36
This commit is contained in:
parent
a46d328298
commit
eeef56d627
@ -2,7 +2,7 @@
|
||||
|
||||
|
||||
class Solution:
|
||||
def isValidSuduku(self, board: list[list[int]]) -> bool:
|
||||
def isValidSudoku(self, board: list[list[int]]) -> bool:
|
||||
rows = [set() for _ in range(9)]
|
||||
cols = [set() for _ in range(9)]
|
||||
boxes = [set() for _ in range(9)]
|
||||
|
Loading…
x
Reference in New Issue
Block a user