Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바
- 코테
- Binary Tree
- SQL
- java
- Math
- Counting
- hash table
- Tree
- 구현
- array
- Binary Search
- two pointers
- Stack
- string
- dynamic programming
- Class
- bit manipulation
- database
- Data Structure
- greedy
- 파이썬
- implement
- simulation
- geometry
- Number Theory
- sorting
- Method
- 코딩테스트
- Matrix
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열 묶기 본문
1. Input, Output, Example
- strArr의 원소들을 길이가 같은 문자열들끼리 그룹으로 묶었을 때 가장 개수가 많은 그룹의 크기를 반환
2. Constraint
1) 1 ≤ strArr의 길이 ≤ 100,000
2) 1 ≤ strArr의 원소의 길이 ≤ 30
3) strArr의 원소들은 알파벳 소문자로 이루어진 문자열이다.
3. Code
1) 첫 코드(2023/05/01)
import java.util.*;
class Solution {
public int solution(String[] strArr) {
HashMap<Integer,Integer> map = new HashMap<>();
for(String s : strArr)
map.put(s.length(), map.getOrDefault(s.length(),0)+1);
int answer = 0;
Iterator it = map.values().iterator();
while(it.hasNext()){
int i = (int)it.next();
if(i>answer)
answer = i;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 수열과 구간 쿼리 4 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 날짜 비교하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 수열과 구간 쿼리 2 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 리스트 자르기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 조건 문자열 (0) | 2023.05.01 |