You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespacebaekjoon_4949{publicclassValidStringReader{privatechar[]brackets;publicboolRead(stringinput){brackets=newchar[100];intindex=0;foreach(var c in input){if(c=='('||c=='['){
brackets[index++]=c;}elseif(c==')'){if(index==0|| brackets[--index]!='('){returnfalse;}}elseif(c==']'){if(index==0|| brackets[--index]!='['){returnfalse;}}}returnindex==0;}}publicclassProgram{publicstaticvoidMain(string[]args){varreader=new ValidStringReader();while(true){varinput= System.Console.ReadLine();if(input=="."){break;}
System.Console.WriteLine(reader.Read(input)?"yes":"no");}}}}
The text was updated successfully, but these errors were encountered:
CLASS 2: 균형잡힌 세상 - [4949]
The text was updated successfully, but these errors were encountered: