🤳 [문제]
T = int(input())
for tc in range(1, T+1):
total, submitted_student = map(int,input().split())
submitted_list = list(map(str,input().split()))
total_list = []
for i in range(1, total+1):
total_list.append(str(i))
for i in submitted_list:
if i in total_list:
total_list.remove(i)
## [방법 1]
# join 은 str에서만 가능
# print("#{} {}".format(tc, ' '.join(total_list))
## [방법 2]
# int, str 상관없이 사용 가능
# print('#{}'.format(tc), end=' ')
# print(*total_list)
## [방법 3]
# int, str 상관없이 사용 가능
print("#{}".format(tc), end=' ')
for i in total_list:
print(i, end=' ')
print()
'# 3. APS > SWEA' 카테고리의 다른 글
SWEA # Python_D2_5174_subtree (tree) (0) | 2021.04.08 |
---|---|
SWEA # Python_D3_5178_노드의 합 (tree) (0) | 2021.04.08 |
SWEA # Python_D3_6190_정곤이의 단조 증가하는 수 (0) | 2021.03.14 |
SWEA # Python_D3_2805_농작물 수확하기 (0) | 2021.03.13 |
SWEA # Python_D2_1215_회문1 (0) | 2021.03.13 |