[TIL]Day 139
파이썬 collections 모듈의 Counter 사용하기
from collections import Counter
Counter('hello world') # Counter({'l': 3, 'o': 2, 'h': 1, 'e': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1})
#형식이 아래와 같고 key마다 몇개의 개수가 있는지 알고싶을 때
items = [[key,value],[key,value],[key,value]]
cnt = Counter([key for value, key in items])
프로그래머스 완주하지 못한 선수를 나는 딕셔너리로 풀었는데 카운터를 사용하여 풀수도 있다!
다른 사람의 코드도 열심히 봐야겠다.
import collections
def solution(participant, completion):
answer = collections.Counter(participant) - collections.Counter(completion)
return list(answer.keys())[0]
Author And Source
이 문제에 관하여([TIL]Day 139), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@du-du-zi/TILDay-139저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)