https://programmers.co.kr/learn/courses/30/lessons/64061
def solution(board, moves):
answer = 0
ret = []
for move in moves:
for i in range(len(board)):
if board[i][move-1]:
if ret and ret[-1] == board[i][move-1]:
ret.pop()
board[i][move-1] = 0
answer += 2
break
else:
ret.append(board[i][move-1])
board[i][move-1] = 0
break
return answer
'알고리즘 > 프로그래머스(Python)' 카테고리의 다른 글
[알고리즘] 프로그래머스 징검다리 건너기 / python (0) | 2020.05.04 |
---|---|
[알고리즘] 프로그래머스 튜플 / python (0) | 2020.04.28 |
[알고리즘] 프로그래머스 파일명 정렬 / python (0) | 2020.03.25 |
[알고리즘] 프로그래머스 n진수게임 / python (0) | 2020.03.25 |
[알고리즘] 프로그래머스 압축 / python (1) | 2020.03.24 |