Implement `isValid(s)` that returns `true` if every opening bracket `(`, `[`, `{` in string `s` is closed by the correct closing bracket in the correct order. Example: `isValid("()[]{}")` → `true`, `isValid("(]")` → `false`.
+ 2 hidden tests run on Submit.
Push openers, pop and check the matching type on closers, and require an empty stack at the end. O(n) time and space.
Run your code to see results.