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

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 }}