728x90
https://programmers.co.kr/learn/courses/30/lessons/12973?language=cpp
스택을 써서 비교하면 되는 간단한문제..
반복문 돌리다가 머리 깨지고 스택 생각해냄
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <iostream>
#include <string>
#include <stack>
using namespace std;
int solution(string s)
{
int answer = 0;
stack <char> st;
for (int i = 0; i < s.size(); i++) {
if (!st.empty()) {
if (s[i] == st.top()) {
st.pop();
}
else
st.push(s[i]);
}
else
st.push(s[i]);
}
if (st.empty()) return 1;
return answer;
}
|
cs |
728x90
'PS > 프로그래머스' 카테고리의 다른 글
[프로그래머스 LV 1] 음양 더하기 파이썬/python (0) | 2021.05.18 |
---|---|
[프로그래머스 LV 2] 게임 맵 최단거리 C++ (0) | 2021.05.18 |
[프로그래머스 LV 2] 문자열 압축 C++, js (0) | 2021.04.08 |
[프로그래머스 LV 2] 카카오프렌즈 컬러링북 C++ (0) | 2021.03.23 |
[프로그래머스 LV 2] 124 나라의 숫자 C++ / javascript (0) | 2021.03.23 |