File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 302302 * [ Tarjans Scc] ( https://github.com/TheAlgorithms/Python/blob/master/graphs/tarjans_scc.py )
303303 * Tests
304304 * [ Test Min Spanning Tree Kruskal] ( https://github.com/TheAlgorithms/Python/blob/master/graphs/tests/test_min_spanning_tree_kruskal.py )
305+ * [ Test Min Spanning Tree Prim] ( https://github.com/TheAlgorithms/Python/blob/master/graphs/tests/test_min_spanning_tree_prim.py )
305306
306307## Greedy Method
307308 * [ Greedy Knapsack] ( https://github.com/TheAlgorithms/Python/blob/master/greedy_method/greedy_knapsack.py )
666667 * [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_071/sol1.py )
667668 * Problem 072
668669 * [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_072/sol1.py )
670+ * Problem 074
671+ * [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_074/sol1.py )
669672 * Problem 076
670673 * [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_076/sol1.py )
671674 * Problem 080
Original file line number Diff line number Diff line change 11from collections import defaultdict
22
3-
43from graphs .minimum_spanning_tree_prims import PrimsAlgorithm as mst
54
65
You can’t perform that action at this time.
0 commit comments