Skip to content

Commit 138e586

Browse files
authored
Update 4.py
1 parent 888fbb3 commit 138e586

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

10/4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def union_parent(parent, a, b):
3030
if find_parent(parent, a) == find_parent(parent, b):
3131
cycle = True
3232
break
33-
# 사이클이 발생하지 않았다면 합치기(Union) 수행
33+
# 사이클이 발생하지 않았다면 합집합(Union) 연산 수행
3434
else:
3535
union_parent(parent, a, b)
3636

0 commit comments

Comments
 (0)