找出不是俩个数组共有的元素
时间: 2024-06-13 15:10:01 浏览: 105
找出不是两个数组共有的元素.c
以下是Python代码实现,用于找出两个整型数组中不是两者共有的元素:
```python
# 输入两个整型数组
list1 = list(map(int, input().split()))[1:]
list2 = list(map(int, input().split()))[1:]
# 定义一个临时数组,用于存放不是两者共有的元素
temp = []
# 在两个数组中分别找出不是两者共有的元素
for i in list1:
if i not in list2 and i not in temp:
temp.append(i)
for i in list2:
if i not in list1 and i not in temp:
temp.append(i)
# 打印不是两者共有的元素
for i in temp:
if temp.count(i) == 1:
print(i, end=' ')
```
阅读全文