Leetcode 2390. Removing Stars From a String

Posted SnailTyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 2390. Removing Stars From a 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/removing-stars-from-a-string/

以上是关于Leetcode 2390. Removing Stars From a String的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode --- 1619. Mean of Array After Removing Some Elements 解题报告

LeetCode 1753. 移除石子的最大得分

LeetCode 1753. 移除石子的最大得分

LeetCode 1619. 删除某些元素后的数组均值

Swift 里 SetAdding & Removing Elements

Removing jQuery from GitHub.com frontend