본문 바로가기
Computer Science/Coding Test

c++(cpp) 프로그래머스 : 코딩 테스트 - 정수 내림차순으로 배치하기

by hzyiunn 2022. 7. 27.
728x90
반응형

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

long long solution(long long n) {
    long long answer = 0;
    string temp = to_string(n);
    sort(temp.begin(), temp.end(), greater<char>()); //string 873211
    answer = stoll(temp);
    return answer;
}
728x90
반응형

댓글