-Code
def solution(s):
stack = []
for i in s:
if stack and i == stack[-1]:
stack.pop()
else:
stack.append(i)
return 1 if len(stack) == 0 else 0
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[프로그래머스/파이썬] 괄호 회전하기 (0) | 2022.05.17 |
---|---|
[프로그래머스/파이썬] 튜플 (0) | 2022.05.17 |
[프로그래머스/파이썬] 가장 큰 수 (0) | 2022.05.17 |
[프로그래머스/파이썬] 소수 찾기 (0) | 2022.05.17 |
[프로그래머스/파이썬] 크레인 인형뽑기 게임 (0) | 2022.05.17 |