01-09 04:37
Recent Posts
Recent Comments
Tags
- SQL
- μλμ΄λ Έ
- DB
- νλ‘λ³΄λ Έ
- μ€ν½λ ν
- DATABASE
- RaspberryPi
- μ‘νκ³
- λ°μ΄ν°λ² μ΄μ€
- μ€ν½μ€λΉ
- ict곡λͺ¨μ
- Naver Cloud
- mysql
- μ¨μΌλν
- appetizer
- JOBνκ³
- python
- linux
- ICTλ©ν λ§
- νμ΄μ¬
- νμ΄μ곡λͺ¨μ
- Java
- API MarketPlace κΈλ‘λ² μν¬ν°μ¦
- ICT
- μ΄λΈμ
- νμ΄μ
- μλ°
- APIλ§μΌνλ μ΄μ€
- TSQL
- Spring
- Today
- Total
miinsun
[Algorithm]μκ³ λ¦¬μ¦ μλ°_30 νκΈ νμ₯(ν΄μ¬) λ³Έλ¬Έ
π¬ λ¬Έμ μ€λͺ
νκΈ νμ₯μ λ½λλ° νλ³΄λ‘ κΈ°νΈ A, B, C, D, E νλ³΄κ° λ±λ‘μ νμ΅λλ€.
ν¬νμ©μ§μλ λ° νμλ€μ΄ μκΈ°κ° μ νν ν보μ κΈ°νΈ(μνλ²³)κ° μ°μ¬μ Έ μμΌλ©° μ μλμ κ·Έ κΈ°νΈλ₯Ό λ°ννκ³ μμ΅λλ€.
μ μλμ λ°νκ° λλ ν μ΄λ€ κΈ°νΈμ νλ³΄κ° νκΈ νμ₯μ΄ λμλμ§ μΆλ ₯νλ νλ‘κ·Έλ¨μ μμ±νμΈμ.
λ°λμ ν λͺ μ νκΈνμ₯μ΄ μ μΆλλλ‘ ν¬νκ²°κ³Όκ° λμλ€κ³ κ°μ ν©λλ€.
π¨ μ μΆλ ₯ μ
μ λ ₯ - 첫 μ€μλ λ° νμμ N(5<=N<=50)μ΄ μ£Όμ΄μ§λλ€.
λ λ²μ§Έ μ€μ Nκ°μ ν¬νμ©μ§μ μ°μ¬μ Έ μλ κ° ν보μ κΈ°νΈκ° μ μλμ΄ λ°νν μμλλ‘ λ¬Έμμ΄λ‘ μ λ ₯λ©λλ€.
15
BACBACCACCBDEDE
μΆλ ₯ - νκΈ νμ₯μΌλ‘ μ νλ κΈ°νΈλ₯Ό μΆλ ₯ν©λλ€.
C
β
π» Solution.java
import java.util.*;
public class Main {
public char solution(int n, String str) {
char answer = ' ';
HashMap<Character, Integer> map = new HashMap<> ();
for(char x : str.toCharArray()) {
map.put(x, map.getOrDefault(x, 0) + 1);
}
int max = Integer.MIN_VALUE;
for(char key : map.keySet()) {
if(map.get(key) > max) {
max = map.get(key);
answer = key;
}
}
return answer;
}
public static void main(String[] args){
Main main = new Main();
Scanner sc =new Scanner(System.in);
int n = sc.nextInt();
String str = sc.next();
System.out.println(main.solution(n, str));
sc.close();
return ;
}
}
'Algorithm > Java' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[Algorithm]μκ³ λ¦¬μ¦ μλ°_32 맀μΆμ‘μ μ’ λ₯ (0) | 2022.01.05 |
---|---|
[Algorithm]μκ³ λ¦¬μ¦ μλ°_31 μλκ·Έλ¨(ν΄μ¬) (0) | 2022.01.05 |
[Algorithm]μκ³ λ¦¬μ¦ μλ°_29 μ΅λ κΈΈμ΄ μ°μ λΆλΆ μμ΄ (0) | 2022.01.04 |
[Algorithm]μκ³ λ¦¬μ¦ μλ°_28 μ°μλ μμ°μμ ν© (0) | 2022.01.04 |
[Algorithm]μκ³ λ¦¬μ¦ μλ°_27 μ°μ λΆλΆ μμ΄ (0) | 2022.01.04 |
Comments