Sudoku Project

Sudoku is a logic puzzle played on a 9x9 grid subdivided into 9 3x3 sub-grids. The player is presented a partially filled puzzle, and must complete it following these rules: Each row must contain the numbers 1-9 (no repeats!) Each 3x3 sub-grid must contain the numbers 1-9 (no repeats!) Each column must contain the numbers 1-9 (no repeats!) TASK: Your final sudoku checker function will be relatively complex. To build it, we’re going to write several simple functions that combine to perform a larger complex operation.