You are viewing a single comment's thread. Return to all comments →
This one is so easy! Here is my Python solution!
def lonelyinteger(a): for num in a: if a.count(num) == 1: return num
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 →
This one is so easy! Here is my Python solution!