Solution: Largest Number
Explore how to use greedy techniques to solve the Largest Number problem by custom sorting numbers as strings. Understand the approach of comparing concatenated strings, handle edge cases, and analyze the time and space complexity of the solution.
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]...