[프로그래머스] 크기가 작은 부분 문자열 Lv.1 - [파이썬/python]
https://school.programmers.co.kr/learn/courses/30/lessons/147355
# 프로그래머스 | 크기가 작은 부분문자열
def solution(t, p):
result = 0
# int(p)와 int(t(p의 길이만큼))를 비교해서 int(p)보다 작거나 같으면 result에 1씩 더하기
for i in range(len(t)-len(p)+1):
if int(t[i:len(p)+i]) <= int(p):
result += 1
return result
728x90
'코딩테스트' 카테고리의 다른 글
[프로그래머스] 문자열을 정수로 바꾸기 - Lv.1 (14) | 2023.08.15 |
---|---|
[프로그래머스] 소수 찾기 - Lv.1 (0) | 2023.08.15 |
[프로그래머스] 숫자 문자열과 영단어 - Lv.1 (21) | 2023.08.14 |
[프로그래머스] 체육복 - Lv.1 (38) | 2023.08.14 |
[프로그래머스] 음양 더하기 - Lv.1 (20) | 2023.08.14 |