문제
함수 solution은 정수 n을 매개변수로 입력받습니다. n의 각 자릿수를 큰것부터 작은 순으로 정렬한 새로운 정수를 리턴해주세요. 예를들어 n이 118372면 873211을 리턴하면 됩니다.
제한 조건
- n은 1이상 8000000000 이하인 자연수입니다.
코드
#include <string>
#include <algorithm>
using namespace std;
long long solution(long long n)
{
string str = to_string(n);
sort(str.begin(), str.end(), greater<char>());
return stoll(str);
}
나의 생각
stoi : string to int
stol : string to long
stoll : string to long long
'Algorithm > 프로그래머스 : Level 1' 카테고리의 다른 글
[프로그래머스 Level 1] 정수 제곱근 판별 (0) | 2021.11.17 |
---|---|
[프로그래머스 Level 1] 문자열 내 마음대로 정렬하기 (0) | 2021.11.16 |
[프로그래머스 Level 1] 자연수 뒤집어 배열로 만들기 (0) | 2021.11.15 |
[프로그래머스 Level 1] 나누어 떨어지는 숫자 배열 (0) | 2021.11.15 |
[프로그래머스 Level 1] 두 정수 사이의 합 (0) | 2021.11.14 |