Skip to content
Advertisement

Tag: parentheses

Parenthesis/Brackets Matching using Stack algorithm

For example if the parenthesis/brackets is matching in the following: and so on but if the parenthesis/brackets is not matching it should return false, eg: and so on. Can you please check this code? Thanks in advance. Answer Your code has some confusion in its handling of the ‘{‘ and ‘}’ characters. It should be entirely parallel to how you

Advertisement