일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바 클래스
- Algorithm
- BOBF
- mac
- sap
- visual studio code
- python
- html
- Fiori
- 백준 알고리즘
- Deep Learning
- SAP 번역
- Eclipse
- java
- tm
- 파이썬
- BTP
- ui5
- ABAP
- 이클립스
- 알고리즘
- 개발
- module
- 맥북
- 자바
- S/4HANA
- BOPF
- FPM
- udemy
- 클래스
Archives
- Today
- Total
목록단어공부 (1)
z2soo's Blog

문제 1157번: 단어 공부 알파벳 대소문자로 된 단어가 주어지면, 이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오. 단, 대문자와 소문자를 구분하지 않는다. www.acmicpc.net 풀이 word = input().upper() checked = [] num_now = 0 for _ in word: if _ not in checked: checked.append(_) n = word.count(_) if num_now == n: word_result = "?" elif num_now < n: num_now = n word_result = _ # 이 부분 때문에 틀린 답이 되어 주석처리함 # if word_result == "?": # break print(word_re..
Algorithm/Algorithm 문제풀이
2022. 12. 30. 15:14