Solving sudoku AI Flashcards

1
Q

Two main topics?

A
  • Constraints propagation

- Search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Depth First Search?

A
  • Start in the root and explore the most left node
How well did you know this?
1
Not at all
2
3
4
5
Perfectly