Search found 1 match

by diegopedro
Sat Aug 01, 2009 4:54 am
Forum: Volume 6 (600-699)
Topic: 673 - Parentheses Balance
Replies: 243
Views: 80086

Re: 673 - Parentheses Balance

help me, I don't understand my i get wrong answer, my code pass in all tests that i done.
This is my code

#include <iostream>

#include <vector>

#include <string>

#include <stack>



using namespace std;



string confere(string exp){

stack<char>parent;

if (exp.empty() == true) return "Yes ...

Go to advanced search