把数组排成最小的数
Contact me:
Blog -> https://cugtyt.github.io/blog/index
Email -> cugtyt@qq.com
GitHub -> Cugtyt@GitHub
题目描述
输入一个正整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。例如输入数组{3,32,321},则打印出这三个数字能排成的最小数字为321323。
来自 Python-Offer
python 2
def PrintMinNumber(self, numbers):
# write code here
if len(numbers) < 1: return ''
cmp = lambda a, b: int(str(a)+str(b)) - int(str(b)+str(a))
return int(''.join(
[str(num) for num in sorted(numbers, cmp=cmp)]))