Project is build in java. test folder is a console based 2-player 1v1 Connect-4 game model which will act as the backgorund game logic for the project
- Open the Connect4 folder with any java compiler based IDE (Intellij/NetBeans)
- Run the main class under the Main package
This module contains the final product with a functional UI. Player will be a human user giving inputs for the game as player 1. The AI will then give response as the opponet as player 2. AI will use MinMax algorithm to determine the best move for the situation. Alpha-Beta pruning method will be used for optimized tree search.
This module is basically the same logic running in background for evalutaion and determining a winner in the game. Player will be a human user giving inputs for the game as player 1. The AI will then give response as the opponet as player 2. AI will use MinMax algorithm to determine the best move for the situation. Alpha-Beta pruning method will be used for optimized tree search.
This is a test