learn-python icon indicating copy to clipboard operation
learn-python copied to clipboard

Addition of Path Finder mini-project

Open StutiRajput07 opened this issue 1 year ago • 0 comments

This Python script uses the curses library to visualize the process of finding a path through a maze in real-time within a terminal window. The program represents the maze as a list of lists, where each list represents a row in the maze, and each string element in the lists represents a cell in the maze. The maze includes walls (#), a start point (O), and an end point (X), with empty spaces ( ) that can be traversed. The script includes the following main components:

StutiRajput07 avatar May 13 '24 19:05 StutiRajput07