본문 바로가기

CodingTest/Level2

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

코딩테스트 연습

  • programmers.co.kr
  • 짝지어 제거하기



def solution(s):
    tmp = []

    for x in s:
        if tmp == []:
            tmp.append(x)
            continue

        if x == tmp[-1]:
            tmp.pop()
    if not tmp:
        return 1
    else:
        return 0
반응형