프로그래머스 181852 뒤에서 5등 위로

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

1 개요[ | ]

프로그래머스 181852 뒤에서 5등 위로

2 C++[ | ]

#include <string>
#include <vector>
#include <algorithm>

using namespace std;

vector<int> solution(vector<int> num_list) {
    sort(num_list.begin(), num_list.end());
    return {num_list.begin()+5, num_list.end()};
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}