완주하지 못한 선수

문제 설명

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

마라톤에 참여한 선수들의 이름이 담긴 배열 participant와 완주한 선수들의 이름이 담긴 배열 completion이 주어질 때, 완주하지 못한 선수의 이름을 return 하도록 solution 함수를 작성해주세요.

제한사항

  • 마라톤 경기에 참여한 선수의 수는 1명 이상 100,000명 이하입니다.
  • completion의 길이는 participant의 길이보다 1 작습니다.
  • 참가자의 이름은 1개 이상 20개 이하의 알파벳 소문자로 이루어져 있습니다.
  • 참가자 중에는 동명이인이 있을 수 있습니다.

입출력 예

participant completion return
[“leo”, “kiki”, “eden”] [“eden”, “kiki”] “leo”
[“marina”, “josipa”, “nikola”, “vinko”, “filipa”] [“josipa”, “filipa”, “marina”, “nikola”] “vinko”
[“mislav”, “stanko”, “mislav”, “ana”] [“stanko”, “ana”, “mislav”] “mislav”

입출력 예 설명

예제 #1

leo는 참여자 명단에는 있지만, 완주자 명단에는 없기 때문에 완주하지 못했습니다.

예제 #2

vinko는 참여자 명단에는 있지만, 완주자 명단에는 없기 때문에 완주하지 못했습니다.

예제 #3

mislav는 참여자 명단에는 두 명이 있지만, 완주자 명단에는 한 명밖에 없기 때문에 한명은 완주하지 못했습니다.

프로그래머스

첫번째 시도

1
2
3
4
def solution(participant, completion):
for c in completion:
participant.remove(c)
return participant[0]

정확성: 50 효율성: 0

두번째 시도

1
2
3
4
5
6
7
8
9
10
11
12
def solution(participant, completion):
dic = {}
for p in participant:
try: dic[p] += 1
except: dic[p] = 1

for c in completion:
if c in dic:
dic[c] -= 1
if dic[c] == 0:
del dic[c]
return list(dic.keys())[0]

통과

다른 사람들의 풀이

1

1
2
3
4
5
from collections import Counter

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

2

1
2
3
4
5
6
7
def solution(participant, completion):
participant.sort()
completion.sort()
for p,c in zip(participant, completion):
if p != c:
return p
return participant[-1]

Collections module

function description
namedtuple() factory function for creating tuple subclasses with named fields
deque list-like container with fast appends and pops on either end
Counter dict subclass for counting hashable objects
OrderedDict dict subclass that remembers the order entries were added
defaultdict dict subclass that calls a factory function to supply missing values

Counter

1
2
3
4
5
6
7
# 목록의 단어 집계
cnt = Counter()
for word in ['red', 'blue', 'red', 'green', 'blue', 'blue']:
cnt[word] += 1
cnt

# Counter({'red': 2, 'blue': 3, 'green': 1})
1
2
3
4
5
6
# Counter objects는 사전과 사용 인터페이스는 같지만 missing item에 대해서 
# key error를 발생시키지 않고, 0을 반환한다.
c = Counter(['eggs', 'ham'])
c['bacon']

# 0
1
2
3
4
5
c = Counter(a=4, b=2, c=0, d=-2)
c.update(['a','b','c','d'])
c

# Counter({'a': 5, 'b': 3, 'c': 1, 'd': -1})
1
2
3
Counter('abracadabra').most_common(3)

# [('a', 5), ('b', 2), ('r', 2)]
Share