Solving sudoku AI Flashcards
1
Q
Two main topics?
A
- Constraints propagation
- Search
2
Q
AI strategies in sudoku?
A
- Elimination: All the empty boxes are assigned all the numbers. Then the numbers that are not possible are erased from each box
- Only choice: For each box look if there is only one possible number choice
- Constraint propagation: Combine strategies. Like first elimination and then only choice and so on.
- Search is to explore all possibilities and try to find the best. Like Depth First Search
3
Q
What is Depth First Search?
A
- Start in the root and explore the most left node