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
- hash table
- dynamic programming
- Matrix
- Math
- Data Structure
- 코테
- Counting
- Binary Search
- bit manipulation
- greedy
- array
- 자바
- java
- Number Theory
- Stack
- string
- database
- Tree
- Binary Tree
- simulation
- Method
- geometry
- implement
- SQL
- Class
- 파이썬
- 코딩테스트
- sorting
- two pointers
- 구현
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1399. Count Largest Group 본문
1. Input
1) int n
2. Output
1) 1부터 n까지의 수들을 각 숫자의 자릿수의 합으로 그룹을 나눌 때, 그룹의 크기가 가장 큰 것들이 몇개인지 반환
3. Constraint
1) 1 <= n <= 10^4
4. Example
Input: n = 13 -> Output: 4
설명: 1부터 13까지의 수를 각 자릿수의 합이 같은 숫자끼리 그룹을 나눠보면 [1,10], [2,11], [3,12], [4,13], [5], [6], [7], [8], [9]의 아홉 그룹이 나온다. 이 중 그룹의 크기가 가장 큰 것은 2이므로 그룹의 크기가 2인 그룹의 개수인 4를 반환한다.
5. Code
1) 첫 코드(2023/06/12)
class Solution {
public int countLargestGroup(int n) {
HashMap<Integer,Integer> m = new HashMap<>();
int max = 0, ans = 0;
for(int i=1 ; i<=n ; i++){
int sum = 0, num = i;
while(num>0){
sum += num%10;
num /= 10;
}
m.put(sum, m.getOrDefault(sum,0)+1);
max = Math.max(max, m.get(sum));
}
List<Integer> list = new ArrayList<>(m.keySet());
for(int i : list)
if(m.get(i)==max) ans++;
return ans;
}
}
- 41%, 27%
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1629. Slowest Key (0) | 2023.06.13 |
---|---|
[LeetCode/Easy] 1496. Path Crossing (0) | 2023.06.13 |
[LeetCode/Easy] 1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree (0) | 2023.06.12 |
[LeetCode/Easy] 1287. Element Appearing More Than 25% In Sorted Array (0) | 2023.06.08 |
[LeetCode/Easy] 1175. Prime Arrangements (0) | 2023.06.08 |