Leetcode 1047. Remove All Adjacent Duplicates In String

Posted SnailTyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 1047. Remove All Adjacent Duplicates In String相关的知识,希望对你有一定的参考价值。

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

2. Solution

**解析:**Version 1,最先想到的方法,使用数据结构栈,可以解决这个问题,时间复杂度O(N)。字符每次入栈之前都与栈顶元素进行比较,如果相同,则栈顶元素出栈,继续下一个字符,不同则入栈。

  • Version 1
class Solution:
    def removeDuplicates(self, s: str) -> str:
        res = []
        for ch in s:
            if res and ch == res[-1]:
                res.pop()
            else:
                res.append(ch)
        return ''.join(res)

Reference

  1. https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string/

以上是关于Leetcode 1047. Remove All Adjacent Duplicates In String的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 1047. Remove All Adjacent Duplicates In String

LC-1047 Remove All Adjacent Duplicates In String

1047. Remove All Adjacent Duplicates In String

1047. Remove All Adjacent Duplicates In String

1047--Remove All Adjacent Duplicates In String

1047. Remove All Adjacent Duplicates In String做题报告