Alpha-Beta Pruning
Alpha-beta pruning skips branches that cannot change the minimax decision. Alpha is the best max can already force. Beta is the best min can already force. If a node becomes worse than that window, stop expanding it. Same answer as minimax, fewer nodes.
Order matters: good move ordering prunes more. Viva: “same result as minimax, less work”. Don’t say it makes a different (smarter) strategy.
Alpha-Beta Pruning — output — three lines. Not a different strategy — less work.
Same result as minimax + why order helps.