https://school.programmers.co.kr/learn/courses/30/lessons/147355
문제
코드
def solution(t, p):
answer = 0
leng = len(p)
p = int(p)
for i in range(0,len(t) -leng+1, +1):
a = t[i:i + leng]
a = int(a)
if a <= p:
answer+=1
return answer
'알고리즘' 카테고리의 다른 글
프로그래머스) 푸드 파이트 대회 -python (0) | 2023.01.03 |
---|---|
프로그래머스) 명예의 전당(1) - python (0) | 2023.01.03 |
프로그래머스)과일장수 -python (0) | 2023.01.02 |
백준 7568)덩치 -python (0) | 2022.12.30 |
프로그래머스 피로도 - python (0) | 2022.12.28 |