Skip to content

Commit 97b33b2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d9b07df commit 97b33b2

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

graphs/minimum_spanning_tree_kruskal2.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
34
class DisjointSetTreeNode[T]:
45
# Disjoint Set Node to store the parent and rank
56
def __init__(self, data: T) -> None:

0 commit comments

Comments
 (0)