본문 바로가기
Programming Test/문제풀이

[문제 풀이 21] 프로그래머스 - 완주하지 못한 선수

by muns91 2024. 4. 20.
완주하지 못한 선수

 

  • 문제 유형 : Hash
  • 사용언어 : Python
  • 난이도 : LV. 1
  • 출처 : 프로그래머스

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

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

def solution(participant, completion):
    participant_dict = {}
    
    # 참가자 이름을 딕셔너리에 추가하면서 카운트 증가
    for name in participant:
        if name in participant_dict:
            participant_dict[name] += 1
        else:
            participant_dict[name] = 1
    
    # 완주자 이름에 대한 카운트 감소
    for name in completion:
        participant_dict[name] -= 1
    
    # 카운트가 0이 아닌 이름 찾기
    for name in participant_dict:
        if participant_dict[name] > 0:
            return name
반응형