프로그래머스 120911 문자열 정렬하기 (2)

1 개요[ | ]

프로그래머스 120911 문자열 정렬하기 (2)

2 C++[ | ]

#include <string>
#include <algorithm>
using namespace std;

string solution(string my_string) {
    for(char& ch : my_string) {
        ch = tolower(ch);
    }
    sort(my_string.begin(), my_string.end());
    return my_string;
}
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

string solution(string my_string) {
    int len = my_string.length();
    char str[len+1];
    int i;
    for(i=0; i<len; i++) {
        str[i] = tolower(my_string[i]);
    }
    str[i] = 0;
    sort(str, str+len);
    string answer = str;
    return answer;
}