# 짝지어 제거하기 - 프로그래머스
def solution(s):
t = []
for i in s:
if not t:
t.append(i)
elif t[-1] == i:
t.pop()
else:
t.append(i)
return 1 if len(t) == 0 else 0
def solution(s):
t = []
for i in s:
if not t:
t.append(i)
elif t[-1] == i:
t.pop()
else:
t.append(i)
return 1 if len(t) == 0 else 0