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 | 31 |
Tags
- ChatGPT
- 맥북
- gs25
- 편스토랑
- Kaggle
- dacon
- 데이콘
- ubuntu
- 자연어처리
- hackerrank
- 파이썬
- 더현대서울 맛집
- Baekjoon
- 백준
- 우분투
- 코로나19
- 프로그래머스
- SW Expert Academy
- Docker
- github
- 금융문자분석경진대회
- leetcode
- 프로그래머스 파이썬
- programmers
- 캐치카페
- Git
- 편스토랑 우승상품
- Real or Not? NLP with Disaster Tweets
- AI 경진대회
- PYTHON
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 1371번 : 가장 많은 글자 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 가장 많은 글자 입니다.
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))
'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 |
Comments