Skip to content

Commit be82ae4

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

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

data_structures/disjoint_set/union_find.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
Author: Michael Alexander Montoya
1212
"""
1313

14+
1415
class UnionFind:
1516
def __init__(self, size):
1617
self.parent = list(range(size))

0 commit comments

Comments
 (0)