字符串比较的奇巧淫技。
Given a list of non negative integers, arrange them such that they form the largest number.
Example1:
1 | Input: [10,2] |
Example2:
1 | Input: [3,30,34,5,9] |
思路很确定就是先比较第一位排序然后第二位排序。下边的这个解法就只用了一次排序,虽然时间复杂度稍微高一点。
1 | class Solution { |
未来不迎,当时不杂,过往不恋
字符串比较的奇巧淫技。
Given a list of non negative integers, arrange them such that they form the largest number.
Example1:
1 | Input: [10,2] |
Example2:
1 | Input: [3,30,34,5,9] |
思路很确定就是先比较第一位排序然后第二位排序。下边的这个解法就只用了一次排序,虽然时间复杂度稍微高一点。
1 | class Solution { |