Given a list of non-negative integers nums, arrange them such that they form the largest number and return it.
Since the result may be very large, so you need to return a string instead of an integer.
음수가 아닌 정수 숫자 목록이 주어지면 가장 큰 숫자를 형성하도록 배열하여 반환합니다.
결과가 매우 클 수 있으므로 정수 대신 문자열을 반환해야 합니다.
Example 1:
Input: nums = [10,2]
Output: "210"
Example 2:
Input: nums = [3,30,34,5,9]
Output: "9534330"
Constraints:
- 1 <= nums.length <= 100
- 0 <= nums[i] <= 10^9
코드
class Solution {
fun largestNumber(nums: IntArray): String {
// if(nums.isEmpty()) return ""
val answer = nums
.map { it.toString() }
.sortedWith { a, b -> (b + a).compareTo(a + b) }
return if (answer[0][0] == '0') "0" else answer.joinToString("")
}
}