🔍문제

문자열 s에 나타나는 문자를 큰것부터 작은 순으로 정렬해 새로운 문자열을 리턴하는 함수, solution을 완성해주세요. s는 영문 대소문자로만 구성되어 있으며, 대문자는 소문자보다 작은 것으로 간주합니다.

제한 사항
  • str은 길이 1 이상인 문자열입니다.
입출력 예
s return
“Zbcdefg” “gfedcbZ”

📝내 풀이

코드

1
2
3
4
5
6
7
8
9
10
11
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

string solution(string s) {
    sort(s.begin(), s.end(), std::greater<int>());
    return s;
}

Programmers 카테고리 내 다른 글 보러가기

댓글남기기