문제 확인
나의 풀이
이전-현재 데이터가 동일한지 확인하기 위해서 stack을 활용했다.
def solution(s):
stack = []
for char in s:
# 제거할 수 있는 경우
if stack and stack[-1] == char:
stack.pop()
continue
stack.append(char)
return 1 if not stack else 0