#Exercise 5
The image challenge.gif
shows a complete Sudoku puzzle. Write a program that can confirm if the answer to the puzzle is correct or not.
- If you don't know the rules of sudoku your first task is to research how to play the game.
- You will need to decide how to represent the sudoku grid(s) as a data structure in your program.
- You will need to represent the values in the grid as a data structure in your program or a txt file which is read by the program
- Use functions or OOP to avoid repeating similar tasks
- Is the
challenge.gif
a correct solution? - How many distinct correct solutions are there to the puzzle?