leetcode 179 最大数

news/2024/11/17 4:49:21/

给定一组非负整数,重新排列它们的顺序使之组成一个最大的整数。

示例 1:

输入: [10,2]
输出: 210

示例 2:

输入: [3,30,34,5,9]
输出: 9534330

说明: 输出结果可能非常大,所以你需要返回一个字符串而不是整数。

解题思路:

和普通的排序不一样的是,不是比较数或者字符串的大小,而是比较拼接后字符串的大小。

python3实现:

from functools import cmp_to_key
def largestNumber(nums):num_to_str = [str(i)for i in nums]num_to_str.sort(key=cmp_to_key(lambda a, b: (int(a + b) > int(b + a)) - (int(a + b) < int(b + a))), reverse=True)return '0' if num_to_str[0] == '0' else ''.join(num_to_str)

python3比python2少了cmp参数,用com_to_key可以完成相应的功能。

from functools import cmp_to_keynums = [1, 3, 2, 4]
nums.sort(key=cmp_to_key(lambda a, b: a - b))
print(nums)  # [1, 2, 3, 4]

 

 

 

 


http://www.ppmy.cn/news/807210.html

相关文章

zzulioj1008: 美元和人民币

1008: 美元和人民币 题目描述 美元越来越贬值了&#xff0c;手上留有太多的美元似乎不是件好事。赶紧算算你的那些美元还值多少人民币吧。假设美元与人民币的汇率是1美元兑换6.5573元人民币&#xff0c;编写程序输入美元的金额&#xff0c;输出能兑换的人民币金额。 输入 输入…

179. 最大数 largestNumber

>179. 最大数< >largestNumber< 一、解题思路 1、解法一( Java ) 解法思路&#xff1a;字典序比较器 首先将 nums 中的数转换成 String 类型&#xff0c;然后使用闭包 lambda表达式自定义比较器 &#xff0c;再使用 compareTo() 方法 比较两个字符串后按照字典…

力扣 179. 最大数

给定一组非负整数 nums&#xff0c;重新排列每个数的顺序&#xff08;每个数不可拆分&#xff09;使之组成一个最大的整数。 注意&#xff1a;输出结果可能非常大&#xff0c;所以你需要返回一个字符串而不是整数。 示例 1&#xff1a; 输入&#xff1a;nums [10,2] 输出&…

LeetCode(179) Largest Number

题目如下&#xff1a; Given a list of non negative integers, arrange them such that they form the largest number. For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330. Note: The result may be very large, so you need to return a stri…

leetcode 179.最大数

leetcode 179.最大数 题干 给定一组非负整数 nums&#xff0c;重新排列每个数的顺序&#xff08;每个数不可拆分&#xff09;使之组成一个最大的整数。 注意&#xff1a;输出结果可能非常大&#xff0c;所以你需要返回一个字符串而不是整数。 示例 1&#xff1a; 输入&#…

leetcode 1796

1796. 字符串中第二大的数字 难度简单9收藏分享切换为英文接收动态反馈 给你一个混合字符串 s &#xff0c;请你返回 s 中 第二大 的数字&#xff0c;如果不存在第二大的数字&#xff0c;请你返回 -1 。 混合字符串 由小写英文字母和数字组成。 示例 1&#xff1a; 输入&am…

[LeetCode]179.Largest Number

【题目】 Given a list of non negative integers, arrange them such that they form the largest number. For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330. Note: The result may be very large, so you need to return a string instead of a…

luogu1968 美元汇率

luogu1968 美元汇率 时空限制 1000ms/128MB 题目背景 此处省略maxint1个数 题目描述 在以后的若干天里戴维将学习美元与德国马克的汇率。编写程序帮助戴维何时应买或卖马克或美元&#xff0c;使他从100美元开始&#xff0c;最后能获得最高可能的价值。 输入输出格式 …