1. 크기가 작은 부분 문자열 (Level 1) Problem Summary 숫자로 이루어진 문자열인 t, p가 주어진다. t에서 p와 길이가 같은 부분 문자열 중, 부분 문자열이 나타내는 수가 p보다 작거나 같은 것이 몇 번 나오는지 횟수를 리턴한다. Solution function solution(t, p) { let answer = 0; const length = p.length; const pNum = Number(p) for (let i = 0; i b - a); let answer = 0; for (let i = 0; i < g.length; i++) { if (!s.length) return answer; const child = g[i]; while (s.length) { const coo..