[9/11] 짝지어 제거하기

이경준·2021년 9월 11일
0

코테

목록 보기
98/140
post-custom-banner

레벨2 문제

내 코드

from collections import deque

def solution(s):
    
    s = deque(s)
    arr = []
    
    while True:
        if (len(s) == 0):
            break
            
        temp = s.popleft()
        
        if ( len(arr) != 0 and arr[-1] == temp ):
            arr.pop()
        else:
            arr.append(temp)
    
    if ( len(arr) == 0):
        answer = 1
    else:
        answer = 0

    return answer

로직

  • 스텍 자료구조 사용
profile
The Show Must Go On
post-custom-banner

0개의 댓글