-Code
n, m = map(int, input().split())
a_list = set(list(map(int, input().split())))
b_list = list(map(int, input().split()))
res = []
for a in a_list:
if a in b_list:
res.append(a)
for r in sorted(res):
print(r)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24089번 ボールの移動 (Moving Balls) (0) | 2023.07.04 |
---|---|
[백준/파이썬] 24074번 分割 (Split) (0) | 2023.07.03 |
[백준/파이썬] 4864번 Gold Coins (0) | 2023.07.01 |
[백준/파이썬] 24077번 比較 (Comparison) (0) | 2023.06.30 |
[백준/파이썬] 25773번 Number Maximization (0) | 2023.06.29 |