Given a list of non negative integers, arrange them such that they form the largest number.code
For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330.orm
Note: The result may be very large, so you need to return a string instead of an integer.utf-8
這有一種很簡單的思路:
咱們無非是要判斷哪一個串放在哪一個的前面或者後面,這其實就是兩個數的比較問題,只不過大小的比較方式不是一般的形式。固然經過字符串的處理有不少的方式,不過都略顯複雜了,反正兩個數的比較就兩種狀況,因此咱們不妨列拿出來比較下得出結果就行。字符串
#coding=utf-8 class Solution: def cmp(self,x,y): if x*(10**len(str(y)))+y < y*(10**len(str(x)))+x: return 1 elif x*(10**len(str(y)))+y == y*(10**len(str(x)))+x: return 0 else: return -1 # @param num, a list of integers # @return a string def largestNumber(self, num): num.sort(self.cmp) return str(int(''.join(map(lambda x: str(x),num))))