← 返回 nvidia 的题目列表Largest Number Concatenation
类型:online_judge
nvidia
Given an array of integers, rearrange the elements to form the largest number possible by concatenating the elements. Return the result as a string. Example: Input: [3, 54, 5] Output: "5543" Constraints: The number of elements n won't exceed $10^3$.