##Problem Description:
- A robot must reach the end point from a start cell in the grid efficiently.
- The grid may contain obstacles in between.
- The simulator must contain a way to dynamically change the obstacles to make the algorithm adapt to the changing landscape.
- Avoid Bellman based algorithms.
###Solution:
- The solution makes use of A* algorithm
- The heuristic is based on Manhattan distance
- The solution compiles on Qt Creator IDE
- The start and end cells may be changed programatically as of now.