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
- array
- database
- string
- Counting
- 자바
- sorting
- Method
- geometry
- Class
- hash table
- implement
- dynamic programming
- Math
- Binary Search
- two pointers
- Binary Tree
- Stack
- 구현
- Tree
- 코테
- java
- Data Structure
- Number Theory
- Matrix
- bit manipulation
- greedy
- 코딩테스트
- simulation
- 파이썬
- SQL
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1089. Duplicate Zeros 본문
1. Input
1) int 배열 arr
2. Output
1) 0이 나올 때 1개씩 복사한 결과 배열
2) 결과 배열의 길이는 arr의 길이와 같아야 한다.
3. Constraint
1) 1 <= arr.length <= 10^4
2) 0 <= arr[i] <= 9
4. Example
Input: arr = [1,0,2,3,0,4,5,0] -> Output: [1,0,0,2,3,0,0,4]
설명: arr의 길이는 8이다.
- arr[1] == 0이므로 0을 복사하면 [1,0,0,2,3,0,4,5]
- 다음 0은 3 뒤에 있으므로 0을 복사하면 [1,0,0,2,3,0,0,4]
5. Code
1) 첫 코드(2022/07/14)
for(int i=0 ; i<arr.length-1 ; i++){
if(arr[i]==0){
for(int j=arr.length-1 ; j>i ; j--){
arr[j] = arr[j-1];
} // for j
arr[i+1] = 0;
i++;
} // if 0
} // for i
return arr;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1108. Defanging an IP Address (0) | 2022.12.20 |
---|---|
[LeetCode/Easy] 1103. Distribute Candies to People (0) | 2022.12.20 |
[LeetCode/Easy] 1078. Occurrences After Bigram (0) | 2022.12.16 |
[LeetCode/Easy] 1051. Height Checker (0) | 2022.12.16 |
[LeetCode/Easy] 1009. Complement of Base 10 Integer (0) | 2022.12.16 |