-코드
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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 1264번 모음의 개수 (0) | 2021.11.27 |
---|---|
[백준/파이썬] 10807번 카드 역배치 (0) | 2021.11.27 |
[백준/파이썬] 11945번 뜨거운 붕어빵 (0) | 2021.11.26 |
[백준/파이썬] 11899번 괄호 끼워넣기 (0) | 2021.11.25 |
[백준/파이썬] 2153번 소수 단어 (0) | 2021.11.25 |