File tree 1 file changed +0
-3
lines changed
1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ def _input(message):
8
8
def initialize_unweighted_directed_graph (
9
9
node_count : int , edge_count : int
10
10
) -> dict [int , list [int ]]:
11
-
12
11
graph : dict [int , list [int ]] = {}
13
12
for i in range (node_count ):
14
13
graph [i + 1 ] = []
@@ -22,7 +21,6 @@ def initialize_unweighted_directed_graph(
22
21
def initialize_unweighted_undirected_graph (
23
22
node_count : int , edge_count : int
24
23
) -> dict [int , list [int ]]:
25
-
26
24
graph : dict [int , list [int ]] = {}
27
25
for i in range (node_count ):
28
26
graph [i + 1 ] = []
@@ -37,7 +35,6 @@ def initialize_unweighted_undirected_graph(
37
35
def initialize_weighted_undirected_graph (
38
36
node_count : int , edge_count : int
39
37
) -> dict [int , list [tuple [int , int ]]]:
40
-
41
38
graph : dict [int , list [tuple [int , int ]]] = {}
42
39
for i in range (node_count ):
43
40
graph [i + 1 ] = []
You can’t perform that action at this time.
0 commit comments