Skip to content

Commit 7f31c59

Browse files
authored
Update README.md
1 parent 75a4c52 commit 7f31c59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ All contributions are welcome. :)
2525
* DFS
2626
* ASTAR (A*)
2727

28-
### Breadth First Search (unweighted Dijkstra)
28+
#### Breadth First Search (unweighted Dijkstra)
2929
Breadth First Search is unweighted and guarantee a optimal path.
3030
![BFS](https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/bfs.gif)
3131

32-
### Depth First Search
32+
#### Depth First Search
3333
Depth First Search is unweighted and does not guarantee a optimal path.
3434
![DFS](https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/dfs-nonoptimal.gif)
3535

36-
### Astar (A*)
36+
#### Astar (A*)
3737
A* is weighted and guarantee a optimal path.
3838
![A* easy](https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/a-star_ez.gif)
3939
![A*](https://github.com/ss892714028/Maze-PathFinder-Visualization-Python/blob/master/gifs/a-star.gif)

0 commit comments

Comments
 (0)