#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(string s) {
string answer = "";
sort(s.begin(), s.end(), greater<int>());
answer = s;
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
프로그래머스 - 정수 내림차순으로 배치하기 (0) | 2019.09.06 |
---|---|
프로그래머스 - 가운데 글자 가져오기 (0) | 2019.09.06 |
프로그래머스 - 모의고사 c++ (0) | 2019.09.06 |
댓글