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
- bit manipulation
- implement
- 구현
- SQL
- hash table
- Tree
- Number Theory
- Counting
- 코테
- 파이썬
- Binary Search
- array
- dynamic programming
- Stack
- simulation
- Binary Tree
- 코딩테스트
- two pointers
- string
- sorting
- database
- Method
- 자바
- Matrix
- Data Structure
- Math
- Class
- greedy
- geometry
- java
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 배열 자르기 본문
1. Input
1) 정수 배열 numbers
2) 정수 num1, num2
2. Output
1) numbers의 num1번째 인덱스부터 num2번째 인덱스까지 자른 정수 배열
3. Constraint
1) 2 <= numbers의 길이 <= 30
2) 0 <= numbers의 원소 <= 1,000
3) 0 <= num1 < num2 < numbers의 길이
4. Example
Input: numbers={1,2,3,4,5}, num1=1, num2=3 -> Output: {2,3,4}
5. Code
1) 첫 코드(2022/10/19)
int[] answer = new int[num2-num1+1];
for(int i=num1 ; i<=num2 ; i++)
answer[i-num1] = numbers[i];
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 순서쌍의 개수 (0) | 2022.10.21 |
---|---|
[프로그래머스/Lv.0] 외계행성의 나이 (0) | 2022.10.21 |
[프로그래머스/Lv.0] 짝수의 합 (0) | 2022.10.21 |
[프로그래머스/Lv.0] 양꼬치 (0) | 2022.10.21 |
[프로그래머스/Lv.0] 각도기 (0) | 2022.10.21 |