문제
코드
My answer
import sys
input=sys.stdin.readline
an,bn=map(int,input().split())
a=set(map(int,input().split()))
b=set(map(int,input().split()))
k=a&b
print(an+bn-len(k)*2)
Another answer
input()
print(len(set(input().split())^set(input().split())))
풀이
나는 교집합의 수를 구한다음 a의원소갯수+b의원소갯수-교집합*2를 해줬는데 파이썬에는 ^라는 대칭차집합 연산자가 존재했다.. 그냥 저 연산자 쓰면된다.
728x90
반응형