Haribo ML, AI, MATH, Algorithm

완주하지 못한 선수

2021-01-16
Haribo

완주하지 못한 선수

코드

from collections import Counter
def solution(participant, completion):
    answer = Counter(participant) - Counter(completion)
    return list(answer.keys())[0]

핵심

Counter 함수는 pandasunique 같은 함수로 {원소 : 갯수} 형태로 반환해주는데, 두 Counter 간에 덧셈, 뺄셈이 가능한 이점이 있음.


Similar Posts

이전 포스트 신규 아이디 추천

다음 포스트 체육복

Comments