AI Features

Solution: Largest Number

Let's solve the Largest Number problem using the Greedy Techniques pattern.

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:

  • 1≤1 \leq nums.length ≤100\leq 100

  • 0≤0 \leq nums[i] ≤103\leq 10^3 ...

Ask