You are viewing a single comment's thread. Return to all comments →
Without count/counter
def lonelyinteger(a): # Write your code here new_arr=[] for item in a: if item in new_arr: new_arr.remove(item) else: new_arr.append(item) return new_arr[0]
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 →
Without count/counter