We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 888fbb3 commit 138e586Copy full SHA for 138e586
10/4.py
@@ -30,7 +30,7 @@ def union_parent(parent, a, b):
30
if find_parent(parent, a) == find_parent(parent, b):
31
cycle = True
32
break
33
- # 사이클이 발생하지 않았다면 합치기(Union) 수행
+ # 사이클이 발생하지 않았다면 합집합(Union) 연산 수행
34
else:
35
union_parent(parent, a, b)
36
0 commit comments