728x90
문자열 내림차순으로 배치하기
문제 설명
.
문제 풀이
소스코드 : C++
#include<iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
bool comp(char a, char b){return a > b;}
string solution(string s) {
sort(s.begin(), s.end(), comp);
return s;
}
소스코드 : Python
def solution(s):
return ''.join(sorted(s,reverse=True))
728x90
300x250