You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implemented (1) breadth-first search and (2) A* search to help an AI agent to find a path through the maze and reach the exit. The agent can move in one of four directions North, West, South, or East. Search algorithms are expected to return the full path from the start position to the goal location as a Python list.