반응형
프로그래머스
2019 카카오 개발자 겨울 인턴
from collections import Counter
def solution(s):
answer = []
word = s.replace('{', "").replace('}', "").split(',')
count_word = Counter(word).most_common()
for i in count_word:
answer.append(int(i[0]))
return answer
반응형
'DS > Coding Test' 카테고리의 다른 글
[Python][해시] 의상 (0) | 2023.05.19 |
---|---|
[Python][Greedy][BFS] 조이스틱 (0) | 2023.05.19 |
[Python] 간단한 식 계산하기 (0) | 2023.05.19 |
[Python] 수식 최대화 (0) | 2023.05.19 |
[Python][정렬] H-Index (0) | 2023.05.19 |