https://school.programmers.co.kr/learn/courses/30/lessons/131127
from collections import Counter
def solution(want, number, discount):
answer = 0
discount_len = len(discount)
for i in range(discount_len-10+1):
arr = discount[i:i+10]
counter = Counter(arr)
flag = True
for w, n in zip(want, number):
if counter[w] != n:
flag = False
if flag:
answer += 1
return answer
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 숫자 변환하기 Python (0) | 2024.10.01 |
---|---|
[Programmers] 프로그래머스 연속 부분 수열 합의 개수 Python (0) | 2024.09.26 |
[Programmers] 프로그래머스 다음 큰 숫자 Python (0) | 2024.09.24 |
[Programmers] 프로그래머스 등굣길 Python (3) | 2024.09.14 |
[Programmers] 프로그래머스 롤케이크 자르기 Python (0) | 2024.09.04 |