Balanced Parantheses


Code is giving correct output but test case is not passing what is wrong?

hello @aryamaan1011


u have not included the cases like cur_char not matched with its corresponding pair.

for example if cur_car is ‘)’ and stk.top() !=’(’ in that case u should return false
similarly if cur_car is ‘}’ and stk.top() !=’{’
similarly if cur_car is ‘]’ and stk.top() !=’[’
in all such cases u should return false

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.