프로그래머스 Lv.0 뒤에서 5등 위로개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2024. 1. 8. 21:53
Table of Contents
<Solution>
class Solution {
public int[] solution(int[] num_list) {
for(int i = 0; i < num_list.length-1; i++) {
for(int j = i+1; j < num_list.length; j++) {
if(num_list[i] > num_list[j]) {
int tmp = num_list[i];
num_list[i] = num_list[j];
num_list[j] = tmp;
}
}
}
int[] answer = new int [num_list.length-5];
System.arraycopy(num_list, 5, answer, 0, answer.length);
return answer;
}
}
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!