Solved
Easy
Topics
Stack | Queue |String
Companies
You are given a string s consisting of lowercase English letters. 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. It can be proven that the answer is unique.
Example 1:
Input: s = "abbaca"
Output: "ca"
Explanation:
For example, in "abbaca" we could remove "bb" since the letters are adjacent and equal, and this is the only possible move. The result of this move is that the string is "aaca", of which only "aa" is possible, so the final string is "ca".
Example 2:
Input: s = "azxxzy"
Output: "ay"
Constraints:
1 <= s.length <= 105
s consists of lowercase English letters.
classSolution{publicStringremoveDuplicates(Strings){char[]charS=s.toCharArray();intfast=0;intslow=0;while(fast<charS.length){// Use the fast pointer to overwrite the value at the slow pointer// When encountering the same value before and after, the slow pointer retreats, // and the same value will be overwritten by the fast pointer in the next loopif(slow>0&&charS[slow-1]==charS[fast]){slow--;}else{charS[slow++]=charS[fast];}//每次循环都需要移动fastfast++;}returnnewString(charS,0,slow);}}