Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 1.26 KB

README.md

File metadata and controls

28 lines (25 loc) · 1.26 KB

An Educational Project

This project is made for educational purposes.
I solved two diffrent problems and created one game in one repository and made a README.md file for each one of them.
Hope everyone like it.

Maze Problem

Maze problem is solved with A* algorithm.
For more details about implementation, read README in the "maze_problem" folder.
Output test of the project is something like this:
maze problem

8 Queens Problem

8 queens problem is solved with Simulated Anealing algorithm.
For more details about implementation, read README in the "queens_problem" folder.
Output test of the project is something like this:
8 queens problem

Tic-Tac-Toe Game

Tic-Tac-Toe's artificial intelligence is created with Alpha Beta Purning algorithm.
For more details about implementation, read README in the "tic_tac_toe" folder.
Output test of the project is something like this:
tic tac toe