My Solution / Try
- t.length에서 p.length의 길이를 뺀 것과 같을 때까지 반복
- str.substr() 활용하여 문자열 추출
- 인덱스부터 p.length만큼 추출
function solution(t, p) {
let result = 0;
for (let i = 0; i <= t.length - p.length; i++) {
const subStr = t.substring(i, i + p.length);
if (Number(subStr) <= Number(p)) {
result++;
}
}
return result;
}
'Programming' 카테고리의 다른 글
Redux (0) | 2023.07.04 |
---|---|
[WIL] week3 회고 (0) | 2023.07.02 |
[TypeScript] Generics, 노마드코더 타입스크립트 챌린지 (0) | 2023.06.30 |
[알고리즘] 프로그래머스 삼총사 (0) | 2023.06.30 |
[알고리즘] 프로그래머스 콜라 문제 (0) | 2023.06.29 |