Cambium Assessment Interview Question

Write a function to check if a given string has balanced parentheses.

Interview Answer

Anonymous

Mar 17, 2023

I used a stack and handled opening and closing parentheses (3 types) separately and checked if the stack was empty at the end.