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
- 코테
- 자바
- Data Structure
- dynamic programming
- java
- array
- 파이썬
- Number Theory
- Binary Tree
- implement
- sorting
- string
- database
- Stack
- two pointers
- Math
- 코딩테스트
- simulation
- 구현
- greedy
- bit manipulation
- Method
- Class
- Binary Search
- Matrix
- geometry
- SQL
- Counting
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2089. Find Target Indices After Sorting Array 본문
1. Input
1) 정수 배열 nums
2) 정수 target
2. Output
1) nums를 오름차순으로 정렬 후 target의 인덱스를 담은 list를 반환
- 반환되는 list도 오름차순으로 정렬되어 있어야 한다.
2) nums에 target이 없다면 빈 리스트를 반환
3. Constraint
1) 1 <= nums.length <= 100
2) 1 <= nums[i], target <= 100
4. Example
Input: nums = [1,2,5,2,3], target = 2 -> Output: [1,2]
설명: 오름차순 정렬 후의 nums == [1,2,2,3,5]이므로 2의 위치를 순서대로 담은 [1,2]를 반환한다.
5. Code
1) 첫 코드(2022/06/10)
import java.util.*;
Arrays.sort(nums);
List<Integer> result = new ArrayList();
for(int i=0 ; i<nums.length ; i++)
if(nums[i] == target)
result.add(i);
return result;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 66. Plus One (0) | 2023.01.12 |
---|---|
[LeetCode/Easy] 2103. Rings and Rods (0) | 2023.01.12 |
[LeetCode/Easy] 2068. Check Whether Two Strings are Almost Equivalent (0) | 2023.01.12 |
[LeetCode/Easy] 2057. Smallest Index With Equal Value (0) | 2023.01.12 |
[LeetCode/Easy] 2042. Check if Numbers Are Ascending in a Sentence (0) | 2023.01.12 |