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

[백준/파이썬] 23275번 Knot Knowledge

by 현장 2024. 8. 3.

-Code

n = int(input())
x_list = list(map(int, input().split()))
y_list = list(map(int, input().split()))

for x in x_list:
    if x not in y_list:
        print(x)
        break