Category: Game
Total: 7 Posts
Posts of Category: Game
Total: 7 Posts
Posts of Category: Game
Minimax with Alpha-Beta Pruning in Python
Minimax with Alpha-Beta Pruning in Python Introduction Way back in the late 1920s John Von Neumann established the main problem in game theory that has remained relevant still today: Players s1, s2, ..., sn ar...Learn MorePythonAlgorithmGameartificial intelligenceIntroduction to Phaser 3: Building Breakout
Introduction to Phaser 3: Building Breakout Introduction Game development is a unique branch of software development that can be as rewarding as it is complex. When thinking of creating games, we usually think ...Learn MoreJavaScriptGamephaserPhaser 3 and Tiled: Building a Platformer
Phaser 3 and Tiled: Building a Platformer Introduction Phaser 3 enables us to quickly create games in our browser with JavaScript. Some of our favorite 2D games are platformers - think of games like Mario, Soni...Learn MoreJavaScriptGamephaserTic-Tac-Toe Game
Tic-Tac-Toe Game #include <iostream.h> #include <conio.h> #include <dos.h> #include <process.h> char mat[3][3]; void table(void); //function to print the table void welcome(void); ...Learn MoreC++ ProgramsGameTic-Tac-ToePython Tic Tac Toe Game
Python Tic Tac Toe Game In this tutorial we are going to see how we can implement the tic tac toe game in Python. We can either make use of random numbers for the computer move or we can develop a simple algori...Learn MorePythonGameTic-Tac-ToeC/C++ TIC-TAC-TOE GAME
C/C++ TIC-TAC-TOE GAME This is the main code of my C/C++ TIC-TAC-TOE GAME using the boolean algorithm without calculating all the probability. Using the rand() function to maintain the IA and forcing to play...Learn MoreC++ ProgramsGameTic-Tac-ToeHigh/Low Game
#include <iostream.h> #include <conio.h> #include <stdlib.h> #include <process.h> #include <dos.h> void main() { textbackground(WHITE); textcolor(RED); C: clrscr(); ...Learn MoreC++ ProgramsGame