컴공생의 다이어리

[프로그래머스] 완주하지 못한 선수 - 파이썬(Python) 본문

Development/Algorithm & Coding Test

[프로그래머스] 완주하지 못한 선수 - 파이썬(Python)

컴공 K 2022. 5. 4. 00:01

[프로그래머스] 완주하지 못한 선수 - 파이썬(Python)

 

 

import collections

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

 

 

 

 

 

https://programmers.co.kr/learn/courses/30/lessons/42576

 

코딩테스트 연습 - 완주하지 못한 선수

수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다. 마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수

programmers.co.kr

 

728x90
반응형
Comments