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

Jmnote (토론 | 기여)님의 2023년 11월 7일 (화) 22:50 판 (새 문서: ==개요== {{프로그래머스|레벨=0|페이지=8}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> #include <algorithm> using namespace std; vector<int>...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

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;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}