Write a psuedocode program to check if an string of brackets chars is balanced.
Anonymous
Make a stack, loop through the string and push if open bracket, pop if close bracket and the stack is not already empty, in which the string would be unbalanced. if the loop finishes and the stack is empty, the string is balanced.
Check out your Company Bowl for anonymous work chats.