美文网首页
179. Largest Number [Medium] 字符串

179. Largest Number [Medium] 字符串

作者: 一个想当大佬的菜鸡 | 来源:发表于2019-06-13 15:45 被阅读0次

    179. Largest Number

    179. Largest Number

    主要考的自定义函数?

    class Solution(object):
        def largestNumber(self, nums):
            """
            :type nums: List[int]
            :rtype: str
            """
            def comp(a, b):
                if a + b > b + a:
                    return 1
                elif a + b < b + a:
                    return -1 
                else:
                    return 0
            nums = [str(num) for num in nums]
            nums.sort(comp, reverse=True)
            ans = ''.join(nums)
            return '0' if int(ans) == 0 else ans
    

    相关文章

      网友评论

          本文标题:179. Largest Number [Medium] 字符串

          本文链接:https://www.haomeiwen.com/subject/yaysfctx.html