Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Valid Sudoku (Medium 36)

Determine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated.

Solution:

Click here Check rows, columns and then every 3x3 grid. O(n) time, O(1) space.



Installation

Run make to run python and Swift files.