Given a string *s* containing just the characters `'(', ')', '{', '}', '['` and `']'`, determine if the string is valid (every opening bracket closed by the same type in correct order).
One line string s.
"true" or "false".
Example 1:
Input:
()[]{}Output:
true
Explanation:
Each bracket is properly closed in order.