Search
Duplicate

튜플

문제 설명 및 제한사항

아이디어 및 해결 방법

코드

from collections import Counter def solution(s): s = eval("[" + s[1:-1] + "]") cntr = Counter() for x in s: cntr += Counter(x) answer = [] for n, cnt in sorted(cntr.items(), key=lambda x: -x[1]): answer.append(n) return answer
Python
복사

출처

프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges