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