컴공생의 다이어리

[프로그래머스] 짝지어 제거하기 - 파이썬(Python) 본문

Development/Algorithm & Coding Test

[프로그래머스] 짝지어 제거하기 - 파이썬(Python)

컴공 K 2022. 7. 5. 00:01

[프로그래머스] 짝지어 제거하기 - 파이썬(Python)

 

 

 

from collections import deque

def solution(s):
    temp = deque()
    for i in range(len(s)):
        if temp and temp[-1] == s[i]:
            temp.pop()
        else:
            temp.append(s[i])
    return 0 if temp else 1

 

 

 

https://programmers.co.kr/learn/courses/30/lessons/12973

 

코딩테스트 연습 - 짝지어 제거하기

짝지어 제거하기는, 알파벳 소문자로 이루어진 문자열을 가지고 시작합니다. 먼저 문자열에서 같은 알파벳이 2개 붙어 있는 짝을 찾습니다. 그다음, 그 둘을 제거한 뒤, 앞뒤로 문자열을 이어 붙

programmers.co.kr

 

728x90
Comments