본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 9536번 여우는 어떻게 울지?

by 현장 2021. 11. 26.

-코드

t = int(input())
for _ in range(t):
    s = input().split()
    arr = []
    result = []
    while 1:
        s2 = input().split()
        if s2[-1] == 'say?':
            break
        arr.append(s2[2])
    for i in s:
        if i not in arr:
            result.append(i)
    print(*result)