-
[Programmers] 햄버거 만들기 _Python알고리즘/프로그래머스 2022. 11. 24. 01:24728x90반응형
문제
https://school.programmers.co.kr/learn/courses/30/lessons/133502
풀이
def solution(ingredient): s = [] cnt = 0 for i in ingredient: s.append(i) # [-4:] -> 끝에서 네번째 원소부터 끝까지 if s[-4:] == [1, 2, 3, 1]: cnt += 1 for i in range(4): s.pop() return cnt
LIST'알고리즘 > 프로그래머스' 카테고리의 다른 글
[Programmers] 삼총사 _Python (2) 2022.12.01 [Programmers] 귤 고르기 _Python (1) 2022.11.26 [Programmers] 푸드 파이트 대회 _Python (0) 2022.11.24 [Programmers] 숫자 카드 나누기 _Python (0) 2022.11.23 [Python] 진수 변환하기 (숫자 <-> 문자열) bin(), oct(), hex(), foramt() (0) 2022.11.04