https://programmers.co.kr/learn/courses/30/lessons/42576?language=python3
import collections
def solution(participant, completion):
print(collections.Counter(participant))
print(collections.Counter(completion))
answer = collections.Counter(participant) - collections.Counter(completion)
return list(answer.keys())[0]
'IT > 알고리즘' 카테고리의 다른 글
[1day 1 solve , 20/07/06] 프로그래머스 크레인 인형 뽑기 lv1 (0) | 2020.07.06 |
---|---|
[프로그래머스/lv1]비밀지도/c++ (0) | 2020.01.27 |
[프로그래머스/lv1]나누어 떨어지는 숫자 배열/c++ (0) | 2020.01.25 |
[프로그래머스/lv1]가운데 글자/c++ (0) | 2020.01.25 |
[프로그래머스/lv1]체육복/c++ (0) | 2020.01.25 |