Notice
Recent Posts
Link
Tags
- string
- springboot
- 스프링
- SSL
- spring boot
- Django
- 자바
- Docker
- java
- mysql
- PYTHON
- 프로그래머스
- spring security 6
- AWS
- DI
- 1차원 배열
- @transactional
- 스프링부트
- hibernate
- spring mvc
- join
- spring
- ORM
- nginx
- 문자열
- static
- sql
- 데이터베이스
- jpa
- select
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
개발하는 자몽
[1157]문자열 - 단어 공부 본문
문제
코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String input = br.readLine();
int cnt[] = new int[26];
for (byte inputs : input.getBytes()) {
if (inputs >= 97) {
cnt[inputs - 'a']++;
} else {
cnt[inputs - 'A']++;
}
}
char res = 0;
int max = -1;
for (int i = 0; i < 26; i++) {
if (max < cnt[i]) {
max = cnt[i];
res = (char) ('A' + i);
} else if (max == cnt[i]) {
res = '?';
}
}
System.out.println(res);
}
}
'Algorithm' 카테고리의 다른 글
[2908] 문자열 - 상수 (0) | 2022.04.19 |
---|---|
[1152]문자열 - 단어의 개수 (0) | 2022.04.18 |
[2675]문자열 - 문자열 반복 (0) | 2022.04.15 |
[10809]문자열 - 알파벳 찾기 (0) | 2022.04.14 |
[11720]문자열 - 숫자의 합 (0) | 2022.04.13 |
Comments