Skip to content

Commit 5b024f4

Browse files
cclaussgithub-actions
and
github-actions
authored
BROKEN BUILD: Fix a failing precommit test (TheAlgorithms#3344)
* Fix a failing precommit test * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent cc050db commit 5b024f4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

DIRECTORY.md

+3
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@
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)
@@ -666,6 +667,8 @@
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

graphs/tests/test_min_spanning_tree_prim.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from collections import defaultdict
22

3-
43
from graphs.minimum_spanning_tree_prims import PrimsAlgorithm as mst
54

65

0 commit comments

Comments
 (0)