2. Valid Parentheses
easyAsked at WixValidate balanced brackets using a stack; Wix uses this for template-tag matching in their HTML editor.
By Alex Chen, Founder, InterviewChamp.AI · Last verified
Problem
Given a string s containing the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. Brackets must close in correct order.
Constraints
1 <= s.length <= 10^4s consists of bracket characters only
Examples
Example 1
s="()[]{}"trueExample 2
s="(]"falseApproaches
1. Brute force
Repeatedly remove matching pairs until none left.
- Time
- O(n^2)
- Space
- O(n)
while (s.includes('()')||s.includes('[]')||s.includes('{}')) s=s.replace('()','').replace('[]','').replace('{}',''); return s===''Tradeoff:
2. Stack
Push openers, pop and match on closers.
- Time
- O(n)
- Space
- O(n)
function isValid(s){
const pairs={')':'(',']':'[','}':'{'};
const stack=[];
for (const c of s){
if (!pairs[c]) stack.push(c);
else if (stack.pop()!==pairs[c]) return false;
}
return stack.length===0;
}Tradeoff:
Wix-specific tips
Wix asks this with a twist about validating their Velo template syntax — mention how the same stack pattern detects malformed component nesting in user-built sites.
Solve it now
Free. No sign-up. Python and JavaScript run instantly in your browser.
Practice these live with InterviewChamp.AI
Drill Valid Parentheses and other Wix interview questions under real-loop conditions with instant feedback on your reasoning, complexity claims, and code.
Practice these live with InterviewChamp.AI →