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
- database
- bit manipulation
- Binary Tree
- Binary Search
- array
- Matrix
- simulation
- 코테
- string
- Counting
- dynamic programming
- 자바
- 코딩테스트
- 파이썬
- greedy
- java
- Data Structure
- hash table
- Math
- Stack
- Number Theory
- 구현
- two pointers
- geometry
- SQL
- Tree
- sorting
- implement
- Method
- Class
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2053. Kth Distinct String in an Array 본문
1. Input
1) String[] arr
2) int k
2. Output
1) arr의 중복되지 않은 요소들 중 k번째를 반환
- 그런 문자열이 없다면 빈 문자열을 반환
3. Constraint
1) 1 <= k <= arr.length <= 1000
2) 1 <= arr[i].length <= 5
3) arr[i]는 영어 소문자로 이루어져 있다.
4. Example
Input: arr = ["d","b","c","b","c","a"], k = 2 -> Output: "a"
설명: arr의 요소 중 중복되지 않은 요소들은 ["d","a"]이며, 이 중 2번째는 a이므로 a를 반환한다.
5. Code
1) 첫 코드(2023/04/26)
class Solution {
public String kthDistinct(String[] arr, int k) {
String answer = "";
HashMap<String,Integer> map = new HashMap<>();
for(String s : arr)
map.put(s, map.getOrDefault(s,0)+1);
for(String s : arr){
if(map.get(s)==1) k--;
if(k==0){
answer = s; break;
}
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2078. Two Furthest Houses With Different Colors (0) | 2023.04.26 |
---|---|
[LeetCode/Easy] 2073. Time Needed to Buy Tickets (0) | 2023.04.26 |
[LeetCode/Easy] 2047. Number of Valid Words in a Sentence (0) | 2023.04.26 |
[LeetCode/Easy] 2027. Minimum Moves to Convert String (0) | 2023.04.26 |
[프로그래머스/Lv.0] 문자열 여러 번 뒤집기 (0) | 2023.04.25 |