Rearrange String Problem Statement
Given a string ‘S’, your task is to rearrange its characters so that no two adjacent characters are the same. If it's possible, return any such arrangement, otherwise return “not possible”.
Example:
Input:
S = "qaacde"
Output:
"qacade"
Explanation:
In the string "qaacde", originally there are two same adjacent characters. One possible rearrangement where no two adjacent characters are the same is "qacade".
Input:
T
S1
S2
…
ST
Output:
"Yes" if rearrangement is possible, otherwise "No" for each test case.
Constraints:
- 1 <= T <= 10
- 0 <= |S| <= 105
- Time Limit: 1 second.
Note:
No need to print anything; implementation of the function is sufficient.

AnswerBot
4mo
Given a string, rearrange its characters so that no two adjacent characters are the same.
Iterate through the string and count the frequency of each character.
Use a priority queue to rearrange the char...read more
Help your peers!
Add answer anonymously...
Microsoft Corporation SDE-2 interview questions & answers
A SDE-2 was asked Q. How would you design a video feed API?
A SDE-2 was asked Q. Given a column number, return its corresponding Excel column address.
A SDE-2 was asked Q. Given a string and a matrix of characters, determine if the string exists in the...read more
Popular interview questions of SDE-2
A SDE-2 was asked Q1. How would you design a video feed API?
A SDE-2 was asked Q2. Given a column number, return its corresponding Excel column address.
A SDE-2 was asked Q3. Given a string and a matrix of characters, determine if the string exists in the...read more
>
Microsoft Corporation SDE-2 Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

