<문제 설명>
수많은 마라톤 선수들이 마라톤에 참여하였습니다. 단 한 명의 선수를 제외하고는 모든 선수가 마라톤을 완주하였습니다.
마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수들의 이름이 담긴 배열 completion이 주어질 때, 완주하지 못한 선수의 이름을 return 하도록 solution 함수를 작성해주세요.
<제한사항>
- 마라톤 경기에 참여한 선수의 수는 1명 이상 100,000명 이하입니다.
- completion의 길이는 participant의 길이보다 1 작습니다.
- 참가자의 이름은 1개 이상 20개 이하의 알파벳 소문자로 이루어져 있습니다.
- 참가자 중에는 동명이인이 있을 수 있습니다.
<풀이>
def solution(participant, completion):
participant.sort()
completion.sort()
for i in range(len(participant)):
if participant[i] != completion[i]:
return participant[i]
return participant[len(participant)-1]
<다른 풀이>
import collections
def solution(participant, completion):
answer = collections.Counter(participant) - collections.Counter(completion)
return list(answer.keys())[0]
'Algorithm' 카테고리의 다른 글
[프로그래머스 Level1] 모의고사 (0) | 2021.07.31 |
---|---|
[프로그래머스 Level1] K번째수 (0) | 2021.07.31 |
[프로그래머스 Level1] 숫자 문자열과 영단어 (0) | 2021.07.30 |
[프로그래머스 Level1] 폰켓몬 (0) | 2021.07.26 |
[프로그래머스 Level1] 체육복 (0) | 2021.07.26 |