-코드
a, b = map(int, input().split())
arr = set(map(int, input().split()))
arr2 = set(map(int, input().split()))
r = []
for i in arr:
if i not in arr2:
r.append(i)
print(len(r))
if len(arr) != 0:
print(*sorted(r))
else:
print(0)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 2193번 이친수 (0) | 2021.12.03 |
---|---|
[백준/파이썬] 4134번 다음 소수 (0) | 2021.12.03 |
[백준/파이썬] 16968번 차량 번호판 1 (0) | 2021.12.03 |
[백준/파이썬] 4375번 1 (0) | 2021.12.02 |
[백준/파이썬] 13241번 최소공배수 (0) | 2021.12.02 |