赞
踩
给定两个整型数组,本题要求找出不是两者共有的元素。
输入分别在两行中给出两个整型数组,每行先给出正整数N(≤20),随后是N个整数,其间以空格分隔。
在一行中按照数字给出的顺序输出不是两数组共有的元素,数字间以空格分隔,但行末不得有多余的空格。题目保证至少存在一个这样的数字。同一数字不重复输出。
- 10 3 -5 2 8 0 3 5 -15 9 100
- 11 6 4 8 2 6 -5 9 0 100 8 1
3 5 -15 6 4 1
- #By yangbo 2020.08.03
- num1 = list(map(int,input().split()))
- num2 = list(map(int,input().split()))
- num3 = []
- num1.pop(0)#注意看样例,第一个元素不参与比较
- num2.pop(0)
- for i in num1:
- if i not in num2 and i not in num3:
- num3.append(i)
- for j in num2:
- if j not in num1 and j not in num3:
- num3.append(j)
-
- print(' '.join(map(str,num3)))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。