Lonely Integer

  • + 0 comments

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