An AI to play a game similar to Tic-Tac-Toe except you need 5 in a row to win. This game will run on an 8x8 board represented by the 0x88 representation. The 0x88 representation is most often used to represent chess boards. Since chess boards and this board has the same size, we can also use 0x88 to represent the Five in a Row board.
The algorithm that this AI will run on is the MiniMax with Alpha-Beta Pruning.
Download the C# compiler (dotnet.exe and csc.exe) here.
Type into a command line
dotnet run
Type into a command line:
dotnet build
Type into a command line:
dotnet publish -c Release -r os_version
where os_version
is the desired OS. For example, if you want to make an executable for Windows 10 64-bit then the os_version will be win10-x64. The full command line would be dotnet publish -c Release -r win10-x64