Reorganize String

Try to solve the Reorganize String problem.

Statement

Given a string, str, rearrange it so that any two adjacent characters are not the same. If such a reorganization of the characters is possible, output any possible valid arrangement. Otherwise, return an empty string.

Constraints:

  • 11\leq str.length 500\leq500
  • Input string consists of lowercase English letters.

Examples

Press + to interact
canvasAnimation-image
1 of 3

Understand the problem

Let’s take a moment to make sure you’ve correctly understood the problem. The quiz below helps you check that if you’re solving the correct problem:

Reorganize String

1

What is the output if the following string is given as input?

“programming”

(Select all that apply.)

A)

“programing”

B)

“rgmrgmpiano”

C)

“rmpimrggano”

D)

“programimng”

Question 1 of 30 attempted

Figure it out!

We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.

Drag and drop the cards to rearrange them in the correct sequence.

Try it yourself

Implement your solution in the following coding playground:

Press + to interact
Python
usercode > main.py
# importing libraries
from collections import Counter
import heapq
def reorganize_string(str):
# Replace this placeholder return statement with your code
return ""
Reorganize String