728x90
내코드
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
long long solution(long long n) {
vector <int>a;
long long answer = 0;
while(n / 10 != 0)
{
a.push_back(n % 10);
n = n / 10;
}
a.push_back(n % 10);
sort(a.begin(), a.end());
for (int i = a.size() - 1; i >= 0; i--)
{
answer += a.at(i);
if (i == 0)
break;
answer *= 10;
}
return answer;
}
똑똑이코드
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
long long solution(long long n) {
long long answer = 0;
string str = to_string(n);
sort(str.begin(), str.end(), greater<char>());
answer = stoll(str);
return answer;
}
wow!
숫자를 string으로 변환-> string을 char 형태로 오름차순으로 정렬 -> string을 다시 longlong으로 stoll 함수 통해 변환
728x90
'LANG > C++' 카테고리의 다른 글
[C++]08-3.가상 소멸자와 참조자의 참조 가능성 (0) | 2023.05.16 |
---|---|
[C++]08-2.가상함수(Virtual Function) (1) | 2023.05.16 |
[C++]08-1.객체 포인터의 참조관계 (0) | 2023.05.14 |
[C++]07-4.상속을 위한 조건 (0) | 2023.05.14 |
[C++]07-3.protected선언과 세 가지 형태의 상속 (0) | 2023.05.14 |