0921. Minimum Add to Make Parentheses Valid
Description
**Input:** s = "())"
**Output:** 1**Input:** s = "((("
**Output:** 3**Input:** s = "()"
**Output:** 0ac
Last updated
**Input:** s = "())"
**Output:** 1**Input:** s = "((("
**Output:** 3**Input:** s = "()"
**Output:** 0Last updated
**Input:** s = "()))(("
**Output:** 4