Greedy Algorithms - Largest Number (Arrange to Form Biggest)
In the following code snippet for forming the largest number, which line causes incorrect output when the input is [0, 0]?
1: nums = [0, 0] 2: nums_str = list(map(str, nums)) 3: nums_str.sort() 4: result = ''.join(nums_str) 5: return result
