-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path179_LargestNumber.cpp
46 lines (38 loc) · 1.28 KB
/
179_LargestNumber.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <cstdio>
#include <list>
#include <stack>
#include <string>
#include <vector>
#include <numeric>
#include <iostream>
#include <iterator>
#include <algorithm>
#include <unordered_map>
using namespace std;
class Solution {
public:
string largestNumber(vector<int> const &nums_) {
vector<string> nums(nums_.size());
transform(
nums_.begin(), nums_.end(), nums.begin(),
[](int i) { return to_string(i); });
sort(nums.begin(), nums.end(),
[](string const &a, string const &b) { return a + b > b + a; });
string result = accumulate(
nums.begin(), nums.end(), string(),
[](string const &a, string const &b) { return a + b; });
if (!result.empty() && result.front() == '0')
return "0";
return result;
}
};
int main()
{
cout << Solution().largestNumber({ }) << "\n";
cout << Solution().largestNumber({ 0 }) << "\n";
cout << Solution().largestNumber({ 0, 0 }) << "\n";
cout << Solution().largestNumber({ 0, 3, 0 }) << "\n";
cout << Solution().largestNumber({ 3, 3, 331 }) << "\n";
cout << Solution().largestNumber({ 10,2 }) << "\n";
cout << Solution().largestNumber({ 3,30,34,5,9 }) << "\n";
}