我是靠谱客的博主 腼腆豌豆,最近开发中收集的这篇文章主要介绍LeetCode 1249. Minimum Remove to Make Valid Parentheses解题报告(python),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1249. Minimum Remove to Make Valid Parentheses

  1. Minimum Remove to Make Valid Parentheses python solution

题目描述

Given a string s of ‘(’ , ‘)’ and lowercase English characters.
Your task is to remove the minimum number of parentheses ( ‘(’ or ‘)’, in any positions ) so that the resulting parentheses string is valid and return any valid string.
Formally, a parentheses string is valid if and only if:
It is the empty string, contains only lowercase characters, or
It can be written as AB (A concatenated with B), where A and B are valid strings, or
It can be written as (A), where A is a valid string.
在这里插入图片描述

解析

之前做过类似的题目,就是配对"(“和“)”。而且必须”("在“)”的前面出现。
需要对所有的括号进行判断,只有有效的括号才能被保留。

class Solution:
    def minRemoveToMakeValid(self, s: str) -> str:
        stack=[]
        state_dict={}
        for idx, character in enumerate(s):
            if character=="(":
                stack.append(idx)
            if character==")" and len(stack)>0 :
                state_dict[idx]=True
                state_dict[stack[-1]]=True
                stack.pop()
                
        res=[]
        for idx, ch in enumerate(s):
            if ch=="(" or ch== ")":
                if idx in state_dict:res.append(ch)
            else:res.append(ch)
        
        return res
                

Reference

https://leetcode.com/problems/minimum-remove-to-make-valid-parentheses/discuss/419880/Simply-Simple-Python-Solution-with-comments

最后

以上就是腼腆豌豆为你收集整理的LeetCode 1249. Minimum Remove to Make Valid Parentheses解题报告(python)的全部内容,希望文章能够帮你解决LeetCode 1249. Minimum Remove to Make Valid Parentheses解题报告(python)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(85)

评论列表共有 0 条评论

立即
投稿
返回
顶部