Develop an AI to play Connect Four - Python Tutorial

Learn how to create an expert level artificial intelligence to play Connect Four using Python. We start out with a very simple implementation of just dropping a piece randomly and then progress to choosing a column based on score and then finally implementing the minimax algorithm with alpha beta pruning. 💻 Initial code: 🎥Developing the initial connect four game: 🎥How a board game AI works: 🎥Alpha-beta
Back to Top