Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.47 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.47 KB

Connect-4

  • Connect 4 is a game in which the players choose a color and then take turns dropping colored tokens into a six-row, seven-column vertically suspended grid. The pieces fall straight down, occupying the lowest available space within the column. The objective of the game is to be the first to form a horizontal, vertical, or diagonal line of four of one's own tokens.
  • In our implementation of connect 4 we have introduced an AI player. The AI player implements min-max and alpha-beta pruning algorithm to make it's decision.
  • Tech Stack used: JavaScript, React, Bootstrap, Python, FastAPI.

Home Page


How To Play


Play Cards Page


PvP Page


PvE Easy Page

Min-Max Algorithm


PvE Hard Page

Alpha-Beta Pruning Algorithm