Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 304 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 304 Bytes

This problem was asked by Dropbox.

Sudoku is a puzzle where you're given a partially-filled 9 by 9 grid with digits. The objective is to fill the grid with the constraint that every row, column, and box (3 by 3 subgrid) must contain all of the digits from 1 to 9.

Implement an efficient sudoku solver.