Hi, There!
안녕하세요, 바오밥입니다.
목차
- 문제
- 풀이
문제
문제 내용
https://school.programmers.co.kr/learn/courses/30/lessons/120880
풀이
나의 풀이
import java.util.Arrays;
class Solution {
public int[] solution(int[] numlist, int n) {
Arrays.sort(numlist);
for(int i=0; i<numlist.length; i++) {
for(int j=0; j<numlist.length; j++) {
if(Math.abs(n-numlist[i]) <= Math.abs(n-numlist[j])) {
int temp = numlist[i];
numlist[i] = numlist[j];
numlist[j] = temp;
}
}
}
return numlist;
}
}
'Dev > PS' 카테고리의 다른 글
[프로그래머스-코딩테스트 입문] 옹알이 (1) (0) | 2023.08.30 |
---|---|
[프로그래머스-코딩테스트 입문] 등수 매기기 (0) | 2023.08.30 |
[프로그래머스-코딩테스트 입문] 유한소수 판별하기 (0) | 2023.08.30 |
[프로그래머스-코딩테스트 입문] 겹치는 선분의 길이 (0) | 2023.08.30 |
[프로그래머스-코딩테스트 입문] 평행 (0) | 2023.08.24 |