Skip to content

Commit 7ec4898

Browse files
committed
Minor changes in bfs
1 parent 6b2f00f commit 7ec4898

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/graphs/searching/bfs.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
/* * * * * * * * * * * * * * * * * *
2-
3-
Sample graph
4-
5-
var graph = [[1,0,1,0,0,0],
6-
[0,1,0,1,0,0],
7-
[1,0,1,0,1,0],
8-
[0,1,0,1,1,0],
9-
[0,0,1,1,1,1],
10-
[0,0,0,0,1,1]];
11-
* * * * * * * * * * * * * * * * * */
12-
131
(function (exports) {
142

153
'use strict';

0 commit comments

Comments
 (0)