0301. Remove Invalid Parentheses
Description
**Input:** s = "()())()"
**Output:** ["(())()","()()()"]**Input:** s = "(a)())()"
**Output:** ["(a())()","(a)()()"]**Input:** s = ")("
**Output:** [""]Last updated
**Input:** s = "()())()"
**Output:** ["(())()","()()()"]**Input:** s = "(a)())()"
**Output:** ["(a())()","(a)()()"]**Input:** s = ")("
**Output:** [""]Last updated