카카오인형뽑기

    프로그래머스 카카오 인형 뽑기 파이썬

    프로그래머스 카카오 인형 뽑기 def solution(board, moves): box = [] count = 0 for i in moves: for j in range(len(board)): if board[j][i - 1] != 0: box.append(board[j][i - 1]) board[j][i - 1] = 0 break stack = [] while box: if not stack: stack.append(box[0]) box.pop(0) elif stack[-1] != box[0]: stack.append(box.pop(0)) else: stack.pop(-1) box.pop(0) count += 2 return count 마지막에 모든 테스트 10개 다 통과했는데 1개가 자꾸 런타임에러 ..