Grid world with obstacles. Start (S) must reach Goal (G).
Choose a global planner and watch how it explores.
Legend:
Free cell Obstacle
Frontier / Open set Visited
Final path S / G
Dijkstra → explores in all directions (cost only).
A* → uses cost + heuristic (f = g + h).
Greedy → heuristic only (h), can get "lost".