36. Valid Sudoku
# Medium
Solution:
Judge repeatition in horizon.
Judge repeatition in vertical.
Judge repeatition in 3x3 blocks.
list[x]
represents xth
row in Python.
list[:][x]
doesn't represent xth
column in Python.
Last updated
Was this helpful?