programmers.co.kr/learn/courses/30/lessons/12917
문자열 s에 나타나는 문자를 큰것부터 작은 순으로 정렬해 새로운 문자열을 리턴하는 함수, solution을 완성해주세요.
s는 영문 대소문자로만 구성되어 있으며, 대문자는 소문자보다 작은 것으로 간주합니다.제한 사항
- str은 길이 1 이상인 문자열입니다.
입출력 예
sreturn
"Zbcdefg" | "gfedcbZ" |
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
bool comp(char s1, char s2){
return s1 > s2;
}
string solution(string s) {
string answer = "";
for(int i = 0; i < s.size(); i++){
answer+= s[i];
}
sort(answer.begin(), answer.end(), comp);
return answer;
}
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
string solution(string s) {
sort (s.begin(), s.end(), greater<char>());
return s;
}
'프로그래머스 > 1 단계' 카테고리의 다른 글
[ 프로그래머스 1 단계 ] 문자열 내 p와 y의 개수 (0) | 2021.04.25 |
---|---|
[ 프로그래머스 1 단계 ] 2016년 (0) | 2021.04.24 |
[ 프로그래머스 1 단계 ] 수박수박수박수박수박수? (0) | 2021.04.22 |
[ 프로그래머스 1 단계 ] 문자열을 정수로 바꾸기 (0) | 2021.04.21 |
[ 프로그래머스 1 단계 ] 서울에서 김서방 찾기 (0) | 2021.04.20 |