How to tic tac toe computer move?
Answer / Arnima Sharma
To make a computer play Tic Tac Toe, you can implement the Minimax algorithm with alpha-beta pruning or use the Monte Carlo Tree Search (MCTS). The basic idea is for the computer to choose the move that minimizes the maximum possible score of the opponent.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the use of try: except raise, and finally?
What is the use of ‘self’ keyword in python?
What is the purpose of _init_() function in python?
How do I run a python script in windows?
What are the supported data types in python?
Why cannot lambda forms in Python contain statements?
What is the maximum possible length of an identifier?
Tell me what is the difference between django, pyramid, and flask?
Write an expression that evaluate to true?
What is special about python?
What is super () in python?
Why do we need operator overloading?