일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Greedy
- counting elements
- 2981
- spring security
- API
- springboot
- 2018 KAKAO BLIND RECRUITMENT
- 탐욕법
- applicationeventpublisher
- 파이썬
- brute force
- Dijkstra
- error
- javascript
- java
- 최단경로
- algorithm
- BFS
- 알고리즘
- 코딩테스트
- 소수
- codility
- Spring
- 라이브템플릿
- 백준
- 문자열
- HTTP
- Python
- 프로그래머스
- beandefinitionstoreexception
Archives
- Today
- Total
Altiora Petamus
대칭 차집합 본문
🤔생각해보기
파이썬은 set 자료구조를 사용하면 집합 연산을 편리하게 처리할 수 있다. 대칭 차집합의 연산자는 ^ 이다.
집합 연산을 알고 있다면 굉장히 쉬운 문제.
Code
n, m = map(int, input().split())
A = set(map(int, input().split()))
B = set(map(int, input().split()))
print(len(A ^ B))
'1day-1algorithm' 카테고리의 다른 글
유진수 (0) | 2021.08.27 |
---|---|
애너그램 만들기 (0) | 2021.08.26 |
Perm Check (0) | 2021.08.23 |
DNA (0) | 2021.08.22 |
세로읽기 (0) | 2021.08.17 |