You are viewing a single comment's thread. Return to all comments →
def lonelyinteger(a): # Write your code here for i in a: if a.count(i)==1: result=i return i
Seems like cookies are disabled on this browser, please enable them to open this website
Lonely Integer
You are viewing a single comment's thread. Return to all comments →
def lonelyinteger(a): # Write your code here for i in a: if a.count(i)==1: result=i return i