File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 302
302
* [ Tarjans Scc] ( https://github.com/TheAlgorithms/Python/blob/master/graphs/tarjans_scc.py )
303
303
* Tests
304
304
* [ 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 )
305
306
306
307
## Greedy Method
307
308
* [ Greedy Knapsack] ( https://github.com/TheAlgorithms/Python/blob/master/greedy_method/greedy_knapsack.py )
666
667
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_071/sol1.py )
667
668
* Problem 072
668
669
* [ 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 )
669
672
* Problem 076
670
673
* [ Sol1] ( https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_076/sol1.py )
671
674
* Problem 080
Original file line number Diff line number Diff line change 1
1
from collections import defaultdict
2
2
3
-
4
3
from graphs .minimum_spanning_tree_prims import PrimsAlgorithm as mst
5
4
6
5
You can’t perform that action at this time.
0 commit comments