We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf2c68 commit 7dbdb25Copy full SHA for 7dbdb25
algorithms/8_depth_first_search/Dfs_Exerscise.md renamed to algorithms/8_depth_first_search/dfs_exerscise.md
@@ -5,13 +5,14 @@
5
Given a graph in dictionary form, print all employees reporting to given employee.
6
7
```
8
-data = {"karan": {"darshan","nikhil"},
+data = {
9
+ "karan": {"darshan","nikhil"},
10
"darshan": {"khantil", "tanuj"},
11
'tanuj': {"nikhil"},
12
"krinish": {"hetul"},
13
"khantil" : set(),
14
"nikhil" : set()
- }
15
+ }
16
17
18
0 commit comments