★리스트★해쉬, 딕셔너리★할인 행사[프로그래머스]
2023. 6. 19. 18:10
728x90
반응형
https://school.programmers.co.kr/learn/courses/30/lessons/131127
from collections import deque , Counter
def solution(want, number, discount):
answer = 0
# want = ["banana", "apple", "rice", "pork", "pot"]
# number = [3, 2, 2, 2, 1] ==> 개수
# discount = ["chicken", "apple", "apple", "banana", "rice", "apple", "pork", "banana", "pork", "rice", "pot", "banana", "apple", "banana"]
hash_table = {}
for key, value in zip(want, number):
hash_table[key] = value
# print(hash_table)
k=0
while True:
if k > len(discount)-10:
break
idx_discount = discount[k:k+10]
idx = Counter(idx_discount)
# print(idx)
if idx == hash_table:
answer+=1
k+=1
else:
k+=1
return answer
==> 문자열 슬라이싱 idx_discount 생성이후 Counter() 통한 해쉬 생성
728x90
반응형
'Python(프로그래머스) > 해시' 카테고리의 다른 글
★VER5.0★해시★Collections.Counter★완주하지 못한 선수[프로그래머스] (0) | 2023.06.18 |
---|---|
★VER5.0★해시★Collections.Counter★폰켓몬[프로그래머스] (0) | 2023.06.18 |
VER3.0★문자열 리스트(정수형) 정렬할땐 맨앞에꺼 숫자에 따라 정렬된다.★리스트 시작★zip★startswith★전화번호목록[프로그래머스] (0) | 2023.05.29 |
★VER2.0★베스트엘범[프로그래머스] (0) | 2023.01.02 |
list(map(lambda x : x[1] , 리스트)) ==> 2중 리스트 뒤에값★VER2.0★zip★reduce★위장[프로그래머스] (0) | 2023.01.02 |