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`.
Run your code to see results.