All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0301_0400.s0301_remove_invalid_parentheses.readme.md Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
301\. Remove Invalid Parentheses

Hard

Given a string `s` that contains parentheses and letters, remove the minimum number of invalid parentheses to make the input string valid.

Return _all the possible results_. You may return the answer in **any order**.

**Example 1:**

**Input:** s = "()())()"

**Output:** ["(())()","()()()"] 

**Example 2:**

**Input:** s = "(a)())()"

**Output:** ["(a())()","(a)()()"] 

**Example 3:**

**Input:** s = ")("

**Output:** [""] 

**Constraints:**

*   `1 <= s.length <= 25`
*   `s` consists of lowercase English letters and parentheses `'('` and `')'`.
*   There will be at most `20` parentheses in `s`.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy