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

[백준/파이썬] 1822번 차집합

by 현장 2021. 12. 3.

-코드

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)