목차

튜플

ps
링크programmers.co.kr/…
출처프로그래머스
문제 번호64065
문제명튜플
레벨Level 2
분류

기초

시간복잡도O(n)
인풋사이즈n<=1,000,000
사용한 언어Python
해결날짜2022/01/12

풀이

코드

"""Solution code for "Programmers 64065. 튜플".

- Problem link: https://programmers.co.kr/learn/courses/30/lessons/64065
- Solution link: http://www.teferi.net/ps/problems/programmers/64065
"""

import collections
import re

def solution(s):
    counter = collections.Counter(re.findall('\d+', s))
    return [int(num) for num, count in counter.most_common()]