Validate Full Sudoku Solution
validate_full_sudoku_solutionValidate a complete 9x9 Sudoku grid to confirm it meets all solution rules. Returns whether the filled grid is a correct solution.
Instructions
Check whether a fully-filled Sudoku grid is a correct solution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| grid | Yes | A 9x9 Sudoku grid; 0 marks an empty cell. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| is_valid | Yes | ||
| conflicts | Yes | ||
| has_empty_cells | Yes |