https://school.programmers.co.kr/learn/courses/30/lessons/42746
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
bool compare(const string& a, const string& b)
{
return a + b > b + a;
}
string solution(vector<int> numbers)
{
// 가장 첫번째 숫자를 기준으로 내림차순
// 이후 만나는 모든 문자를 add 한다.
string answer;
vector<string> numStrs;
numStrs.reserve(numbers.size());
for (int n : numbers) numStrs.push_back(to_string(n));
std::sort(numStrs.begin(), numStrs.end(), compare);
for (const string& nStr : numStrs)
answer += nStr;
if (answer[0] == '0') answer = '0';
return answer;
}
'CodingTest > 99클럽2024스터디' 카테고리의 다른 글
99클럽 코테 스터디 13일차 TIL, 프로그래머스 / 입국심사 (0) | 2024.08.03 |
---|---|
99클럽 코테 스터디 12일차 TIL, 백준 / 뉴스 전하기 (0) | 2024.08.03 |
99클럽 코테 스터디 8일차 TIL, 프로그래머스 / 최소 힙 (0) | 2024.07.30 |
99클럽 코테 스터디 8일차 TIL, 프로그래머스 / 두 큐 합치기 (0) | 2024.07.29 |
99클럽 코테 스터디 6일차 TIL, 프로그래머스 / 테이블 해시함수 (0) | 2024.07.28 |