JuniorString

Reformat The String

You are given an alphanumeric string s. An alphanumeric string is a string consisting of lowercase English letters and digits.

You have to find a permutation of the string where no letter is followed by another letter and no digit is followed by another digit. That is, no two adjacent characters have the same type.

Return the reformatted string, or return an empty string if it is impossible to reformat the string.

Example 1
Inputs = "a0b1c2"
Output"0a1b2c"
No two adjacent characters have the same type in "0a1b2c"; "a0b1c2", "0a1b2c", and "0c2a1b" are also valid permutations.
Example 2
Inputs = "leetcode"
Output""
"leetcode" has only characters, so we cannot separate them by digits.

Constraints

  • 1 <= s.length <= 500
  • s consists of only lowercase English letters and/or digits.

Asked at 1 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate