문제
for문을 돌면서 count함수로 각 원소의 개수를 판별해주면 된다.
코드
def lonelyinteger(a): for i in a: cnt = a.count(i) if cnt == 1: return i