All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0701_0800.s0767_reorganize_string.readme.md Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
767\. Reorganize String

Medium

Given a string `s`, rearrange the characters of `s` so that any two adjacent characters are not the same.

Return _any possible rearrangement of_ `s` _or return_ `""` _if not possible_.

**Example 1:**

**Input:** s = "aab"

**Output:** "aba"

**Example 2:**

**Input:** s = "aaab"

**Output:** ""

**Constraints:**

*   `1 <= s.length <= 500`
*   `s` consists of lowercase English letters.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy