https://school.programmers.co.kr/learn/courses/30/lessons/147355
def solution(t, p):
answer=0
for i in range(len(t)-len(p)+1):
if int(t[i:i+len(p)]) <= int(p):
answer+=1
return answer
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PYTHON] 문자열 나누기 (0) | 2024.05.27 |
---|---|
[프로그래머스/PYTHON] 가장 가까운 같은 글자 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 2023 KAKAO BLIND RECRUITMENT 개인정보 수집 유효기간 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 둘만의 암호 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 카드 뭉치 (0) | 2024.05.27 |