반응형
https://programmers.co.kr/learn/courses/30/lessons/42746
두 숫자를 앞 또는 뒤로 합쳤을 때, 더 큰 숫자가 나오는 상황으로 정렬시켜주었습니다.
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
bool comp(string& a, string& b) {
return a + b > b + a;
}
string solution(vector<int> numbers) {
string answer = "";
vector<string> convert;
for(int i=0; i<numbers.size(); i++) convert.push_back(to_string(numbers[i]));
sort(convert.begin(), convert.end(), comp);
for(int i=0; i<convert.size(); i++) answer += convert[i];
return answer[0] == '0' ? "0" : answer;
}
반응형
'Algorithm' 카테고리의 다른 글
프로그래머스 : 이진 변환 반복하기 (0) | 2021.11.15 |
---|---|
프로그래머스 : 숫자의 표현 (0) | 2021.11.15 |
프로그래머스 : 게임 맵 최단거리 (0) | 2021.11.15 |
프로그래머스 : 땅따먹기 (0) | 2021.11.15 |
프로그래머스 : 다음 큰 숫자 (0) | 2021.11.15 |