A basic A* implementation with python and jupyter notebooks using the euclidean distance.
Check the notebook to see the full example.
The starting point is green, the end is in red. Obstacles are colored blue. The resulting path between start and end is yellow.
initial_maze = np.array([
[0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 3, 0, 0, 0],
[0, 1, 0, 3, 0, 2, 0],
[0, 0, 0, 3, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0]
])

