Skip to content

Commit ede4d0c

Browse files
authored
Update 1.py
1 parent 690c541 commit ede4d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

10/1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def union_parent(parent, a, b):
2828
union_parent(parent, a, b)
2929

3030
# 각 원소가 속한 집합 출력하기
31-
print('각 원소가 속한 집합:', end='')
31+
print('각 원소가 속한 집합: ', end='')
3232
for i in range(1, v + 1):
3333
print(find_parent(parent, i), end=' ')
3434

0 commit comments

Comments
 (0)