Solution: Largest Number
Explore a greedy technique to solve the largest number problem by defining a custom string comparison rule. Learn to reorder integer strings based on concatenation order to maximize the final combined number.
We'll cover the following...
We'll cover the following...
Statement
Given a list of non-negative integers, nums, rearrange them so that they form the largest possible number. As the result may be very large, return it as a string.
Constraints:
nums.lengthnums[i]...