250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬 몫
- where
- List Comprehension
- 데이터
- 아이엠어바텐더
- 설계
- html
- Len
- ORDER BY
- YOLOv5
- 파이썬
- Join
- pcce 기출문제
- 단어 공부
- Django
- SQL 고득점 Kit
- count
- css
- 백준
- 프로젝트
- python
- map
- 슬라이싱
- sql
- Python3
- GIT
- 파이썬 슬라이싱
- date_format
- 프로그래머스
- 코딩테스트 연습
Archives
- Today
- Total
nan + nan = 2nan
[백준][Python3] #1157. 단어 공부 본문
728x90
코드 입력
word = input()
# 알파벳 정보를 담을 dictionary
alpha_dict = {}
while True:
# 단어의 가장 첫 음절
alpha = word[0]
# 음절 대문자와 소문자 개수 파악
cnt = word.count(alpha.upper()) + word.count(alpha.lower())
# 딕셔너리에 삽입
alpha_dict[alpha.upper()] = cnt
# 해당 음절 대문자 및 소문자 제거
word = word.replace(alpha.upper(), '').replace(alpha.lower(), '')
# 단어 길이가 1 미만일때까지 반복
if len(word) > 1:
continue
else:
break
# 딕셔너리의 값 중 가장 큰 값
max_value = max(alpha_dict.values())
# 최대값을 가진 원소 리스트에 담기
max_keys = [key for key, value in alpha_dict.items() if value == max_value]
# 리스트 개수로 파악
if len(max_keys) == 1:
print(max_keys[0])
else:
print('?')
출처 : 백준 Online Judge
'Python > 백준 알고리즘' 카테고리의 다른 글
[백준][Python3] #25206. 너의 평점은 (0) | 2024.03.03 |
---|---|
[백준][Python3] #10988. 팰린드롬인지 확인하기 (0) | 2024.03.01 |
[백준][Python3] #11718. 그대로 출력하기 (2) | 2024.02.29 |
[백준][Python3] #2444. 별 찍기 - 7 (2) | 2024.02.29 |
[백준][Python3] #9086. 문자열 (0) | 2024.02.28 |
Comments