Playing 2048 with Minimax Part 1: How to apply Minimax to 2048
2048 — a simple game, but programming a computer to solve it it’s not trivial Minimax is an algorithm designated for playing adversarial games, that is games that involve an adversary. In this article, we’ll see how we can apply the minimax algorithm to solve the 2048 game. This is Read more…