We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690c541 commit ede4d0cCopy full SHA for ede4d0c
10/1.py
@@ -28,7 +28,7 @@ def union_parent(parent, a, b):
28
union_parent(parent, a, b)
29
30
# 각 원소가 속한 집합 출력하기
31
-print('각 원소가 속한 집합:', end='')
+print('각 원소가 속한 집합: ', end='')
32
for i in range(1, v + 1):
33
print(find_parent(parent, i), end=' ')
34
0 commit comments