Back to course home
0% completed
Vote For New Content
Solution: Remove All Adjacent Duplicates In String
Problem Statement
Give a string s
, convert it into a valid string. A string is considered valid if it does not have any two adjacent duplicate characters.
To make a string valid, we will perform a duplicate removal process. A duplicate removal consists of choosing two adjacent and equal letters and removing them. We repeatedly make duplicate removals on s
until we no longer can.
Return the final string after all such duplicate removals have been made.
Examples
Example 1
- Input:
"abbaca"
- Expected Output:
"ca"
.....
.....
.....
Like the course? Get enrolled and start learning!
On this page