diff --git a/graphs/basic_graphs.py b/graphs/basic_graphs.py index 314a48a8b..f8643af1c 100644 --- a/graphs/basic_graphs.py +++ b/graphs/basic_graphs.py @@ -8,7 +8,6 @@ def _input(message): def initialize_unweighted_directed_graph( node_count: int, edge_count: int ) -> dict[int, list[int]]: - graph: dict[int, list[int]] = {} for i in range(node_count): graph[i + 1] = [] @@ -22,7 +21,6 @@ def initialize_unweighted_directed_graph( def initialize_unweighted_undirected_graph( node_count: int, edge_count: int ) -> dict[int, list[int]]: - graph: dict[int, list[int]] = {} for i in range(node_count): graph[i + 1] = [] @@ -37,7 +35,6 @@ def initialize_unweighted_undirected_graph( def initialize_weighted_undirected_graph( node_count: int, edge_count: int ) -> dict[int, list[tuple[int, int]]]: - graph: dict[int, list[tuple[int, int]]] = {} for i in range(node_count): graph[i + 1] = []