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 ins
.
[Breadth-First Search] [String] [Backtracking]
- Valid Parentheses (Easy)
Hint 1
Since we don't know which of the brackets can possibly be removed, we try out all the options!Hint 2
We can use recursion to try out all possibilities for the given expression. For each of the brackets, we have 2 options:- We keep the bracket and add it to the expression that we are building on the fly during recursion.
- OR, we can discard the bracket and move on.
Hint 3
The one thing all these valid expressions have in common is that they will all be of the same length i.e. as compared to the original expression, all of these expressions will have the same number of characters removed.Can we somehow find the number of misplaced parentheses and use it in our solution?
Hint 4
The one thing all these valid expressions have in common is that they will all be of the same length i.e. as compared to the original expression, all of these expressions will have the same number of characters removed.Can we somehow find the number of misplaced parentheses and use it in our solution?
Hint 5
For every left parenthesis, we should have a corresponding right parenthesis. We can make use of two counters which keep track of misplaced left and right parenthesis and in one iteration we can find out these two values.0 1 2 3 4 5 6 7 ( ) ) ) ( ( ( ) i = 0, left = 1, right = 0 i = 1, left = 0, right = 0 i = 2, left = 0, right = 1 i = 3, left = 0, right = 2 i = 4, left = 1, right = 2 i = 5, left = 2, right = 2 i = 6, left = 3, right = 2 i = 7, left = 2, right = 2
We have 2 misplaced left and 2 misplaced right parentheses.