You are viewing a single comment's thread. Return to all comments →
def lonelyinteger(a): # Write your code here count_array=[0]*100 for i in a: count_array[i]+=1 for i in range(0,len(count_array)): if count_array[i]==1: 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 →