Lonely Integer

  • + 0 comments

    Python 3 Solution Readable & Optimised

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