Skip to content

Latest commit

 

History

History
72 lines (43 loc) · 2.12 KB

ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof.md

File metadata and controls

72 lines (43 loc) · 2.12 KB

剑指 Offer 45. 把数组排成最小的数 LCOF - 把数组排成最小的数

Tags - 题目标签

Description - 题目描述

EN:

English description is not available for the problem. Please switch to Chinese.

ZH-CN:

输入一个非负整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。

 

示例 1:

输入: [10,2]
输出: "102"

示例 2:

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

 

提示:

  • 0 < nums.length <= 100

说明:

  • 输出结果可能非常大,所以你需要返回一个字符串而不是整数
  • 拼接起来的数字可能会有前导 0,最后结果不需要去掉前导 0

Link - 题目链接

LeetCode - LeetCode-CN

Latest Accepted Submissions - 最近一次 AC 的提交

Language Runtime Memory Submission Time
typescript 88 ms 39.5 MB 2021/12/17 21:35
function minNumber(nums: number[]): string {
  return nums.sort((a, b) => Number(String(a) + String(b)) < Number(String(b) + String(a)) ? -1 : 1).map(e => String(e)).join('');
};

My Notes - 我的笔记

传入排序规则的匿名函数,用 a + b < b + a 判断即可

function minNumber(nums: number[]): string {
  return nums.sort((a, b) => Number(String(a) + String(b)) < Number(String(b) + String(a)) ? -1 : 1).map(e => String(e)).join('');
};