def solution(A):
# write your code in Python 3.6
for item in A:
if A.count(item) == 1 :
return item
# 只需要找到count为1的唯一一个数字就可以了,其它的都不用管