hackerrank---Sets - Symmetric Difference
时间:2014-05-14 03:33:12
收藏:0
阅读:289
集合操作
附上代码:
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]
评论(0)