Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 875 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 875 Bytes

Developer's Note: requires .Net framework version 8.0

Connect 4

In this assignment, we delve into implementing a charming and straightforward game called "Connect 4" using numpy arrays.

If you're unfamiliar with Connect 4, we recommend checking out this link to learn about its rules. Additionally, you can experience the game firsthand by visiting this link.

After you've become familiar with the game, it's time to start your implementation. Begin by creating a 5x5 grid for the game and start implementing its rules and logic.

IMPORTANT NOTE: Using a Graphical User Interface (GUI) is not our goal in this assignment and doesn't earn any extra marks.

Need More Challenge? You can implement single-player mode using the minimax algorithm.