Skip to content

Commit fa9ce2b

Browse files
authored
Update README.md
1 parent f105f82 commit fa9ce2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ Using these example methods, you should be able to make the graph above like the
6969

7070

7171
## Depth-first Search Methods
72-
1. `DFS(start, searchFor)`: Starting at the `node` `start`, traverse the graph depth-first and return the `node` whos name matches `searchFor`. If there are no matches, return `false`.
72+
`DFS(start, searchFor)`: Starting at the `node` `start`, traverse the graph depth-first and return the `node` whos name matches `searchFor`. If there are no matches, return `false`.
7373

7474

7575
## Breadth-first Search Methods
76-
1. `BFS(start)`: Starting at the `node` `start` traverse the graph breadth-first and return an array of the path that is traversed as. For example, in the graph above, `BFS(A)` should return `[A,B,C,D,E,F]`.
76+
`BFS(start)`: Starting at the `node` `start` traverse the graph breadth-first and return an array of the path that is traversed as. For example, in the graph above, `BFS(A)` should return `[A,B,C,D,E,F]`.
7777

7878

7979
## Getting Started

0 commit comments

Comments
 (0)