📝 **Task:** Write `is_balanced(s)` returning `True` if string `s` has balanced parens, brackets, and braces, else `False`. Print `is_balanced('(){[()]}')`.
📋 Implement the function above. Test cases run automatically.
💡 **Hint:** Re-read the theory if you get stuck — the pattern is right there.