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
- Binary Search
- dynamic programming
- 코테
- simulation
- Method
- 자바
- sorting
- two pointers
- bit manipulation
- array
- string
- database
- Number Theory
- java
- Binary Tree
- greedy
- geometry
- Matrix
- 파이썬
- 코딩테스트
- implement
- Math
- Counting
- Stack
- 구현
- hash table
- Data Structure
- Class
- SQL
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] n 번째 원소부터 본문
1. Input, Output, Example
- n 번째 원소부터 마지막 원소까지의 모든 원소를 담은 리스트를 반환
2. Constraint
1) 2 ≤ num_list의 길이 ≤ 30
2) 1 ≤ num_list의 원소 ≤ 9
3) 1 ≤ n ≤ num_list의 길이
3. Code
1) 첫 코드(2023/04/24)
import java.util.*;
class Solution {
public int[] solution(int[] num_list, int n) {
return Arrays.copyOfRange(num_list, n-1, num_list.length);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 문자열 돌리기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 접미사인지 확인하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 이어 붙인 수 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 홀짝에 따라 다른 값 반환하기 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 접두사인지 확인하기 (0) | 2023.04.24 |