Search

크기가 작은 부분문자열

입출력 예시

t
p
result
"3141592"
"271"
2
"500220839878"
"7"
8
"10203"
"15"
3

나의 코드

def solution(t, p): temp = [int(t[i:i+len(p)]) for i in range(len(t)-len(p)+1)] count = 0 for x in temp: if x <= int(p): count+=1 return count
Python
복사

다른 풀이

Python
복사

개선점 분석