[백준/BOJ] 백준 1269번 : 대칭 차집합
www.acmicpc.net/problem/1269 1269번: 대칭 차집합 첫째 줄에 집합 A의 원소의 개수와 집합 B의 원소의 개수가 빈 칸을 사이에 두고 주어진다. 둘째 줄에는 집합 A의 모든 원소가, 셋째 줄에는 집합 B의 모든 원소가 빈 칸을 사이에 두고 각각 주어�� www.acmicpc.net set을 이용하여 중복된 값을 판단해 문제를 해결했다. 코드 #include #include #include using namespace std; int main() { cin.tie(NULL); ios_base::sync_with_stdio(false); int a_num, b_num; int input; set a_result; //A-B set b_result; //B-A set::iterator..
2020.09.23