• + 0 comments

    This one is so easy! Here is my Python solution!

    def lonelyinteger(a):
        for num in a:
            if a.count(num) == 1:
                return num