# 3. APS/SWEA

SWEA # Python_D3_5431_민석이의 과제 체크하기

둥굴둥굴둥굴레차 2021. 3. 14. 20:32

 

 

🤳 [문제] 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

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()