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
- Number Theory
- 자바
- Binary Tree
- greedy
- Binary Search
- Tree
- two pointers
- string
- java
- 구현
- Class
- hash table
- 파이썬
- sorting
- bit manipulation
- 코딩테스트
- Data Structure
- Stack
- geometry
- 코테
- dynamic programming
- Counting
- SQL
- Matrix
- database
- simulation
- array
- Math
- Method
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2418. Sort the People 본문
1. Input
1) String[] names
2) int[] heights
2. Output
1) 키가 큰 사람부터 차례대로 정렬된 이름을 담은 배열을 반환
- heights[i] == names[i]의 키
3. Constraint
1) n == names.length == heights.length
2) 1 <= n <= 10^3
3) 1 <= names[i].length <= 20
4) 1 <= heights[i] <= 10^5
5) names[i]는 영어 대소문자로 이루어져 있다.
6) heights에는 중복 값이 없다.
4. Example
Input: names = ["Mary","John","Emma"], heights = [180,165,170] -> Output: ["Mary","Emma","John"]
5. Code
1) 첫 코드(2023/05/03)
class Solution {
public String[] sortPeople(String[] names, int[] heights) {
ArrayList<Integer> list = new ArrayList<>();
for(int i : heights)
list.add(i);
list.sort(Comparator.reverseOrder());
HashMap<Integer,String> m = new HashMap<>();
for(int i=0 ; i<names.length ; i++)
m.put(heights[i],names[i]);
for(int i=0 ; i<names.length ; i++)
names[i] = m.get(list.get(i));
return names;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2432. The Employee That Worked on the Longest Task (0) | 2023.05.03 |
---|---|
[LeetCode/Easy] 2427. Number of Common Factors (0) | 2023.05.03 |
[LeetCode/Easy] 2413. Smallest Even Multiple (0) | 2023.05.03 |
[LeetCode/Easy] 2399. Check Distances Between Same Letters (0) | 2023.05.03 |
[LeetCode/Easy] 2395. Find Subarrays With Equal Sum (0) | 2023.05.03 |