https://programmers.co.kr/learn/courses/30/lessons/42840
from collections import Counter
def solution(participant, completion):
A = Counter(participant)
B = Counter(completion)
answer = A-B
return [x for x in answer.keys()][0]
'알고리즘' 카테고리의 다른 글
백준 1600번 : 말이 되고픈 원숭이(Python) (0) | 2021.06.20 |
---|---|
programmers 두 개 뽑아서 더하기(Python) (0) | 2021.06.12 |
programmers 타겟 넘버(Python) (0) | 2021.06.06 |
programmers 키패드 누르기(Python) (0) | 2021.06.06 |
백준 13335번 : 트럭(Python) (0) | 2021.04.07 |