Daily challenge for 2025-12-28
362. Simple Stack Bracket Balance Check
Given a string s containing only the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if:
1. Open brackets must be closed by the same type of brackets.
2. Open brackets must be closed in the correct order.
Example 1: Input: s = "()[]{}" Output: trueExample 2: Input: s = "([)]" Output: false
Run this challenge interactively in Python or JavaScript when the app loads.