Skip to content

Commit bd369cb

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

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

data_structures/disjoint_set/disjoint_set.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
Disjoint set.
33
Reference: https://en.wikipedia.org/wiki/Disjoint-set_data_structure
44
"""
5+
56
from dataclasses import dataclass
67

8+
79
@dataclass
810
class Node:
911
data: int

0 commit comments

Comments
 (0)