Skip to content

Commit

Permalink
Update Code
Browse files Browse the repository at this point in the history
  • Loading branch information
witheunjin committed Mar 11, 2020
1 parent b6b0dcf commit ba4503a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions BaekJoon/10828_스택.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ void match(string para) {
else cout << s.top() << endl;
}
}

int main() {
int N;
cin >> N;
Expand Down
1 change: 1 addition & 0 deletions BaekJoon/10845_큐.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ void match(string para) {
else cout << q.back() << endl;
}
}

int main() {
int N;
cin >> N;
Expand Down
1 change: 0 additions & 1 deletion BaekJoon/9012_괄호.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using namespace std;

vector<string> str;

void isVps(vector<string> para) {
for (size_t i = 0; i < para.size(); ++i) {
stack<char> s;
Expand Down

0 comments on commit ba4503a

Please sign in to comment.