https://school.programmers.co.kr/learn/courses/30/lessons/133502
def solution(ing):
answer=0
total_3=ing[2:-1].count(3)
num=2
for i in range(total_3):
num=ing.index(3,num)
if ing[num-2:num+2]==[1,2,3,1]:
del ing[num-2:num+2]
answer+=1
num-=2
else:
num+=1
return answer
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PYTHON] 콜라 문제 (0) | 2024.05.29 |
---|---|
[프로그래머스/PYTHON] 옹알이 (2) (0) | 2024.05.29 |
[프로그래머스/PYTHON] 푸드 파이트 대회 (0) | 2024.05.29 |
[프로그래머스/PYTHON] 과일 장수 (0) | 2024.05.29 |
[프로그래머스/PYTHON] 기사단원의 무기 (0) | 2024.05.29 |