Haribo ML, AI, MATH, Algorithm

튜플


튜플

코드

import re
from collections import Counter
def solution(s) :
    s = Counter(re.findall('\d+', s))
    return list(map(int, sorted(s, key=lambda k: -s[k])))

Similar Posts

이전 포스트 타겟 넘버

다음 포스트 폰켓몬

Comments