728x90
반응형

할인행사

https://school.programmers.co.kr/learn/courses/30/lessons/131127

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

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
반응형

+ Recent posts