def solution(t, p):
count = 0
for i in range(len(t) - len(p) + 1):
num = int(''.join(t[i: i + len(p)]))
if num <= int(p):
count += 1
return count
def solution(t, p):
count = 0
arr = list(t[: len(p) - 1])
for i in range(len(p) - 1, len(t)):
arr.append(t[i])
num = int(''.join(arr))
if num <= int(p):
count += 1
print(num)
arr.pop(0)
return count
copy config JSON > save as .prettierrc
[ ] Daily Progress 작업에 대한 통계량 설정
[x] 각각의 과업이 단위 과업으로 세분화가 가능한가
[ ] 과업 생성 및 과업 할당을 통한 계획 생성이 To-do에 즉각 반영되는가
[ ] 주차별 성취도가 비교 가능한 형태로 수치화되어 있는가
[ ] 계획 중요도에 대한 정량적 지표 수립