Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

README.md

File metadata and controls

32 lines (23 loc) · 1.08 KB

Artificial-Intelligence

This repository contains the files and tasks performed as a part of Artificial Intelligence Course (CS371)

Maze solving using A* Algorithm

Description:

  • A* Algorithm is used to find the optimal path from the start cell to end cell in the given maze.
  • Pyamaze python library has been used to generate maze.

Run the main.py by below command in Mac/Linux

python3 main.py

Run the main.py by below command in Windows

py main.py

Screenshots:

  • Terminal Screenshot

Terminal Screenshot

  • A 10 x 10 Maze Solved. Start cell is the right bottom cell. Goal cell is the left top cell.

10 x 10 Maze screenshot

  • A 15 X 15 Maze Solved.

15 x 15 Maze screenshot

References: