반응형
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 | 31 |
Tags
- 설명
- HTML
- Beakjoon
- 심화1
- 꾸준히
- 문자열
- Baekjoon
- 파이썬
- C 언어
- 10926
- 그리디
- 10807
- 문제풀이
- 정리
- CSS
- Python
- VS
- c언어
- 친절한 설명
- 코드엔진
- greedy
- implement
- 초보
- 구현
- Implemention
- C
- 알고리즘
- 입문
- C Programming
- 백준
Archives
- Today
- Total
목록1157 (1)
안경잡이 구루루
백준 1157 ( 단어 공부 ) [ Python ]
https://www.acmicpc.net/problem/1157 나: word = input() ws = word.lower() a = sorted(set(ws)) alpha= [] high = 0 ouput = 0 for i in a: if ws.count(i) >= high: high = ws.count(i) alpha.append(high) output = i else: pass if alpha.count(max(alpha)) >= 2: print('?') else: print(output.upper()) 완성된 코드는 위와 같다. word = input() ws = word.lower() a = sorted(set(ws)) alpha= [] high = 0 ouput = 0 대소문자로 이루어진 ..
파이썬(Python)/문제풀이(백준,BaekJoon)
2020. 7. 4. 11:23