Types of Games

Deterministic Games

Modeling

Min-Max Search

DFS Minimax

  1. Choose the optimal next step on each player’s turn (minimize for MIN, maximize for MAX)
  2. Recurse until the base case where the game ends

Resource Limits: Depth-limited search with heuristic functions ⭐