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
- Math
- geometry
- Counting
- SQL
- Binary Tree
- Binary Search
- dynamic programming
- Data Structure
- java
- Class
- Tree
- sorting
- two pointers
- array
- database
- 코딩테스트
- hash table
- string
- Matrix
- Number Theory
- 자바
- implement
- 코테
- Method
- bit manipulation
- 파이썬
- Stack
- 구현
- greedy
- simulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 뒤에서 5등까지 본문
1. Input, Output, Example
- num_list에서 가장 작은 5개의 수를 오름차순으로 담은 리스트를 반환
2. Constraint
1) 6 ≤ num_list의 길이 ≤ 30
2) 1 ≤ num_list의 원소 ≤ 100
3. Code
1) 첫 코드(2023/04/27)
import java.util.*;
class Solution {
public int[] solution(int[] num_list) {
Arrays.sort(num_list);
return Arrays.copyOfRange(num_list, 0, 5);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 배열의 원소만큼 추가하기 (0) | 2023.04.27 |
---|---|
[프로그래머스/Lv.0] 접미사 배열 (0) | 2023.04.27 |
[프로그래머스/Lv.0] 배열의 길이에 따라 다른 연산하기 (0) | 2023.04.27 |
[LeetCode/Easy] 2032. Two Out of Three (0) | 2023.04.27 |
[LeetCode/Easy] 2094. Finding 3-Digit Even Numbers (0) | 2023.04.26 |