Connect 4 Game written in Python including an AI player 2 implementing a number of strategies
The AI will implement the following strategies:
- Pick a random column and place a piece there if not full
- Minimax algorith with alpha-beta pruning with some number of move lookead (default 5)
Other than the Very Easy strategy, the bot will implement a minmax algorithm with alpha-beta pruning to determine an optimal move