Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
An input string is valid if:
1 <= s.length <= 10^4s consists of parentheses only '()[]{}'s = "()"trues = "()[]{}"trues = "(]"falses = "([)]"false