1054. Distant Barcodes
https://leetcode.com/problems/distant-barcodes
Description
In a warehouse, there is a row of barcodes, where the ith
barcode is barcodes[i]
.
Rearrange the barcodes so that no two adjacent barcodes are equal. You may return any answer, and it is guaranteed an answer exists.
Example 1:
Example 2:
Constraints:
1 <= barcodes.length <= 10000
1 <= barcodes[i] <= 10000
ac
Last updated