Fix String
stackGiven a string, s, containing only '(' , ')' and lowercase English characters.
Your task is to fix the string. A string is fixed by removing the minimum number of parentheses ( '(' or ')', in any positions ) so that the resulting parentheses string is valid.
FIXED STRING MEANS:
- It is the...