[Programmers] 문자열 내림차순으로 배치하기

프로그래머스 level1

Posted by kyoungIn on January 14, 2019

문자열 내림차순으로 배치하기

문제 링크 : (https://programmers.co.kr/learn/courses/30/lessons/12917#)

풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;

string solution(string s) {
    string answer = "";
    sort(s.begin(),s.end());
    for(int i=s.length()-1;i>=0;i--){
        answer +=s[i];
    }
    cout << answer;
    return answer;
}