class Solution:
    def foundOnceNumber(self , arr , k ):
        for i in arr:
            if arr.count(i) == 1:
                return i