Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Baekjoon
- 파이썬
- 데이콘
- 우분투
- dacon
- Kaggle
- 편스토랑 우승상품
- gs25
- 프로그래머스 파이썬
- ChatGPT
- Git
- ubuntu
- programmers
- 금융문자분석경진대회
- 백준
- Docker
- leetcode
- github
- 맥북
- PYTHON
- 편스토랑
- 자연어처리
- AI 경진대회
- hackerrank
- 더현대서울 맛집
- 프로그래머스
- 캐치카페
- 코로나19
- Real or Not? NLP with Disaster Tweets
- SW Expert Academy
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 1371번 : 가장 많은 글자 (Python) 본문
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 가장 많은 글자 입니다.
1371번: 가장 많은 글자
첫째 줄부터 글의 문장이 주어진다. 글은 최대 5000글자로 구성되어 있고, 공백, 알파벳 소문자, 엔터로만 이루어져 있다. 그리고 적어도 하나의 알파벳이 있다.
www.acmicpc.net
Solution
import sys
def most_common_word(input_string):
count_dict = {}
result = ""
alphabet_word = "abcdefghijklmnopqrstuvwxyz"
for alphabet in alphabet_word:
count_dict[alphabet] = input_string.count(alphabet)
items = sorted(count_dict.items(), key=lambda x: (-x[1], x[0]))
max_count = items[0][1]
for item in items:
if item[1] == max_count:
result += item[0]
return result
if __name__ == "__main__":
input_string = sys.stdin.read()
print(most_common_word(input_string))
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 12813번 : 이진수 연산 (Python) (0) | 2021.08.19 |
---|---|
[BaekJoon] 6603번 : 로또 (Python) (0) | 2021.08.18 |
[BaekJoon] 2439번 : 별 찍기 - 2 (Python) (0) | 2021.08.16 |
[BaekJoon] 15686번 : 치킨 배달 (Python) (0) | 2021.08.15 |
[BaekJoon] 10757번 : 큰 수 A+B (Python) (0) | 2021.08.14 |