해피 코딩!

[프로그래머스] 완주하지 못한 선수 본문

알고리즘

[프로그래머스] 완주하지 못한 선수

지속가능한 성장을 2020. 12. 12. 07:00

link

def solution(participant, completion):
    from collections import defaultdict
    dic = defaultdict(int)
    for part in participant:
        dic[part] += 1
    for comp in completion:
        dic[comp] -= 1

    return max(dic, key=dic.get)
Comments