Easy
Given a string s containing just ()[]{}, determine if the input is valid: brackets are closed by the same type in the correct order.
s
()[]{}
Input: s = "()[]{}" Output: true
Input: s = "([)]" Output: false