open with PyCharm, this codes are making Pacman Agent find path to the goal through the maze world.
'/search.py' >> where I did the search algorithm
run
python pacman.py
to play Pacman
find Breadth First Search solution for
python pacman.py -l mediumMaze -p SearchAgent -a fn=bfs
you can grade question 1 with running
python autograder.py -q q1
Depth First Search for running
python pacman.py -l mediumMaze -p SearchAgent
you can grade question 2 with running
python autograder.py -q q2