check for balanced parentheses without using stack
Anonymous
We can simply use a counter for both '(' and ')' check if the difference is 0. Or ++counter for '(' and --counter for ')' and if at any time counter<0, parenthesis are not balanced.
Check out your Company Bowl for anonymous work chats.