여가생활/파이썬

완주하지 못한 선수

JNKIM 2019. 12. 10. 23:54

def solution(participant, completion) :
    the_dict = {person : 0 for person in participant}
    for person in participant :
        the_dict[person] = the_dict[person] + 1
    
    for person in completion :
        the_dict[person] = the_dict[person] + 1
    
    for person in participant :
        if the_dict[person] % 2 == 1 :
            return person

    return ""