프로그래머스 120880 특이한 정렬

Jmnote (토론 | 기여)님의 2023년 11월 27일 (월) 19:41 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

프로그래머스 120880 특이한 정렬

2 C++[ | ]

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

vector<int> solution(vector<int> numlist, int n) {
    sort(numlist.begin(), numlist.end(), [n](int a, int b) {
        int c = abs(n-a);
        int d = abs(n-b);
        if(c == d) {
            return b < a;
        }
        return c < d;
    });
    return numlist;
}