+ 1
Can someone please tell me how to implement MINIMAX ALGORITHM in JAVA
i want to make an advance version of tic tac toe by using this algo
4 Réponses
+ 1
Minimax is a simple algorithm that tells you which move to play in a game. ... Take a game where you and your opponent take alternate turns. Each time you take a turn you choose the best possible move (max) Each time your opponent takes a turn, the worst move for you is chosen (min), as it benefits your opponent the most.
Source from Google.
+ 1
Thnks for responding to my query bt I know what Minimax is I just don't know how to Implement it
+ 1
Thanks bro for this this helps me a lot 😊