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
- Join
- sql
- date_format
- 프로그래머스
- map
- 파이썬 슬라이싱
- python
- css
- where
- 데이터
- 백준
- html
- 프로젝트
- count
- Len
- Python3
- GIT
- List Comprehension
- 설계
- 파이썬 몫
- ORDER BY
- YOLOv5
- pcce 기출문제
- SQL 고득점 Kit
- 슬라이싱
- 파이썬
- 단어 공부
- 아이엠어바텐더
- 코딩테스트 연습
- Django
Archives
- Today
- Total
목록1157번 (1)
nan + nan = 2nan
[백준][Python3] #1157. 단어 공부
코드 입력 def get_counter(): text = input().upper() cnt = dict() for t in text: if t not in cnt.keys(): cnt[t] = text.count(t) c = sorted(cnt.items(), key=lambda x: x[1], reverse=True) if len(c) == 1: print(text) elif c[0][1] != c[1][1]: return print(c[0][0]) else: return print('?') get_counter() 시간 초과 때문에 애를 많이 먹인 문제이다.문제 자체는 그렇게 어려운게 아닌데, 자꾸 시간 초과가 떠서 중간 중간 시간이 뜰 만한 부분들을제거하는데 주력했다. 예를 들어, 단어에 나오는 ..
Python/백준 알고리즘
2023. 1. 14. 23:48