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)])
반응형
댓글