알파벳 대소문자로 된 단어가 주어지면,
이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오.
단, 대문자와 소문자를 구분하지 않는다.
Input
첫째 줄에 알파벳 대소문자로 이루어진 단어가 주어진다.
주어지는 단어의 길이는 1,000,000을 넘지 않는다.
Output
첫째 줄에 이 단어에서 가장 많이 사용된 알파벳을 대문자로 출력한다.
단, 가장 많이 사용된 알파벳이 여러 개 존재하는 경우에는 ?를 출력한다.
Answer
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String word = br.readLine().toUpperCase();
Map<Character, Integer> mapVal = new HashMap<>();
for (char c : word.toCharArray()) {
mapVal.put(c, mapVal.getOrDefault(c, 0) + 1); // getOrDefault : 찾는 키가 존재하면 키 값 반환 없으면 기본값 반환
}
int max = 0;
char maxWord = '?';
for (Map.Entry<Character, Integer> entry : mapVal.entrySet()) {
int wordCount = entry.getValue();
if (wordCount > max) { // 단어 수 비교
max = wordCount;
maxWord = entry.getKey(); // 키값 (단어)
} else if (wordCount == max) {
maxWord = '?';
}
}
System.out.println(maxWord);
}
}