Posts [알고리즘] 프로그래머스 - 문자열 내림차순으로 배치하기
Post
Cancel

[알고리즘] 프로그래머스 - 문자열 내림차순으로 배치하기


문제

문자열 내림차순으로 배치하기


접근

sorted 함수를 이용하면 문자열도 정렬이 가능하다.
리스트형으로 반환되는 것같아서 join을 해주었다.

코드

  • 파이썬 코드
1
2
3
def solution(s):
    s = ''.join(sorted(s, reverse = True));
    return s
  • C++ 코드
1
2
3
4
5
6
7
8
#include <string>
#include <algorithm>
using namespace std;

string solution(string s) {
    sort(s.begin(), s.end(), greater());
    return s;
}


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 문자열 내 마음대로 정렬하기

[알고리즘] 프로그래머스 - 문자열 다루기 기본