Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6b62d70

Browse files
committed
clean print function in constructor
1 parent 6f065c6 commit 6b62d70

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

algorithms/data_structure/union_find.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ def __init__(self, N):
2222
self.N = N
2323
for i in range(0, N):
2424
self.forests.append(i)
25-
print self.forests
2625

2726
def make_set(self, x):
2827
if type(x) != int:

0 commit comments

Comments
 (0)