https://school.programmers.co.kr/learn/courses/30/lessons/147355
정답
class Solution {
public int solution(String t, String p) {
int answer = 0;
int len = p.length();
long num1 = Long.parseLong(p);
for(int i=0; i<=t.length()-len; i++)
{
String temp = t.substring(i,i+len);
Long num2 = Long.parseLong(temp);
if(num2<=num1)
{
answer++;
}
}
return answer;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 삼총사 (0) | 2024.05.28 |
---|---|
[JAVA] 프로그래머스 - K번째수 (0) | 2024.05.27 |
[JAVA] 프로그래머스 - 3진법 뒤집기 (0) | 2024.05.27 |
[JAVA] 프로그래머스 - 최대 공약수와 최대 공배수 (0) | 2024.05.27 |
[JAVA] 프로그래머스 - 이상한 문자 만들기 (0) | 2024.05.26 |