1047. Remove All Adjacent Duplicates In String

Easy


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.




 from string import ascii_lowercase
class Solution:
    def removeDuplicates(self, S: str) -> str:
#         new_s, removed = self.remove_adjacent_duplicate(s)

#         while removed:
#             new_s, removed = self.remove_adjacent_duplicate(new_s)

#         return new_s

#     def remove_adjacent_duplicate(self, s):
#         removed = False
#         for i, char in enumerate(s[:-1]):
#             if s[i] == s[i+1]:
#                 removed = True
#                 return s.replace(f"{char}{char}", ""), removed
#         return s, removed

#         duplicates = {2*ch for ch in ascii_lowercase}

#         prev_len = -1
#         while prev_len != len(S):
#             prev_len = len(S)

#             for d in duplicates:
#                 S = S.replace(d, "")

#         return S

        # using stack
        output = []

        for ch in S:
            if output and ch == output[-1]:
                output.pop()
            else:
                output.append(ch)

        return "".join(output)

Random Note


Floyd's Hare and Tortoise algorithm best exaplanation video