Medium
Given a string s containing only (, ) and *, return true if it can be made a valid parentheses string. A * can be treated as (, ), or an empty string.
Input: s = "()" Output: true
Input: s = "(*)" Output: true
Input: s = "(*))" Output: true