관리 메뉴

솜씨좋은장씨

[CodeUp] 2807번 : 대표 문자열 (Python) 본문

Programming/코딩 1일 1문제

[CodeUp] 2807번 : 대표 문자열 (Python)

솜씨좋은장씨 2021. 5. 19. 18:09
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 코드업의 대표 문자열 입니다.

 

대표 문자열

여러 개의 숫자 데이터를 대표할 수 있는 하나의 값을 대푯값이라고 한다. 예를 들어, 평균, 중앙값, 최빈값 등이 대푯값에 해당한다. 숫자 읽기보다는 글 읽기를 좋아하는 수빈이는 숫자 데이터

codeup.kr

Solution

from collections import Counter

string = list(input())

cnt = Counter(string).most_common(2)

sorted_items = sorted(cnt, key=lambda x: (-x[1], x[0]))

print(sorted_items[0][0])

Solution 풀이

먼저 문자열을 입력받고 이를 list로 만들어줍니다.

그 다음 collections의 Counter를 활용하여 각 문자를 세어준 다음

most_common(2)를 활용하여 빈도수 상위 2개만 남깁니다.

상위 2개를 카운팅한 숫자, 문자 기준으로 정렬한 다음 가장 첫번째 문자를 정답으로 출력하면 끝!

 

SOMJANG/CODINGTEST_PRACTICE

1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.

github.com

Comments