Skip to content

【Day 90 】2023-01-29 - 1054. 距离相等的条形码 #97

@azl397985856

Description

@azl397985856

1054. 距离相等的条形码

入选理由

暂无

题目地址

https://leetcode-cn.com/problems/distant-barcodes/

前置知识

  • 贪心

题目描述

在一个仓库里有一排条形码其中第 i 个条形码为 barcodes[i]。

请你重新排列这些条形码使其中两个相邻的条形码 不能 相等你可以返回任何满足该要求的答案此题保证存在答案。

 

示例 1输入:[1,1,1,2,2,2]
输出:[2,1,2,1,2,1]
示例 2输入:[1,1,1,1,2,2,3,3]
输出:[1,3,1,3,2,1,2,1]
 

提示1 <= barcodes.length <= 10000
1 <= barcodes[i] <= 10000

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions