본문 바로가기
프로그래머스/1단계

(Python/LV1) 크기가 작은 부분 문자열

by windy7271 2022. 12. 26.
728x90
반응형

문제 출처:https://school.programmers.co.kr/learn/courses/30/lessons/147355

 

풀이:

def solution(t, p):
    list = []
    x,y = 0,len(p)
    while len(t)-x >= y  :
        list.append(t[x:x+y])
        x += 1

    return len([i for i in list if int(i) <= int(p)])
반응형

댓글