https://school.programmers.co.kr/learn/courses/30/lessons/147355
class Solution {
public int solution(String t, String p) {
int answer = 0;
int length = p.length();
Long number = Long.parseLong(p);
for(int i=0;i<(t.length()-length)+1;i++){
if(Long.parseLong(t.substring(i,i+length))<=number){
answer++;
}
}
return answer;
}
}
'JAVA > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 과일 장수 (0) | 2024.01.25 |
---|---|
[프로그래머스/자바] 예산 (1) | 2024.01.23 |
[프로그래머스/자바] 카드 뭉치 (0) | 2024.01.18 |
[프로그래머스/자바] 명예의 전당(1) (0) | 2024.01.17 |
[프로그래머스/자바] 추억 점수 (0) | 2024.01.16 |
댓글