문제 푼 날짜 : 2021-09-22
문제 링크 : https://www.acmicpc.net/problem/1427
sort 함수를 이용하면 쉽게 풀리는 간단한 문제였다.
내림차순 정렬을 위해 옵션으로 greater<>()를 추가해주었다.
// 백준 1427번 : 소트인사이드
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
string str;
cin >> str;
sort(str.begin(), str.end(), greater<>());
cout << str;
return 0;
}
기본기에 집중!