CONNECT 4
Connect 4
DESCRIPTION
Connect 4 is a turn-based game where two players take turns dropping colored disks from the top into a column. The disk will fall straight down towards the next available space within the column. The aim of each player is to be the first to form a vertical, horizontal, or diagonal line of four of one's own disks.

This game was co-developed with tkwonn and maxazm.

ALGORITHM FOR GAME AI
We implemented an agent using a Monte Carlo Tree Search (MCTS) algorithm. The idea behind this algorithm is to build a search tree of possible move sequences and simulates each one multiple times to determine the expected outcome. (Instead of exploring all the possible games, only the most promising routes are chosen).
TECHNOLOGY
We developed this game with Next.js, Material UI, and so on.
MENU