首页 > 技术文章 > hackerrank---Sets - Symmetric Difference

Stomach-ache 2014-05-11 17:17 原文

题目链接

集合操作

附上代码:

1 M = int(input())
2 m = set(map(int, raw_input().strip().split()))
3 N = int(input())
4 n = set(map(int, raw_input().strip().split()))
5 tmp = sorted(m.union(n).difference(m.intersection(n)))
6 for i in xrange(len(tmp)):
7     print tmp[i]

 

推荐阅读