#
#
# @param A int整型一维数组
# @return int整型
#
class Solution:
def singleNumber(self , A ):
# write code here
for i in A:
if A.count(i) == 1:
return i
#
#
# @param A int整型一维数组
# @return int整型
#
class Solution:
def singleNumber(self , A ):
# write code here
for i in A:
if A.count(i) == 1:
return i