Deep_Dev
article thumbnail

 


형변환과 substring만 이용하면 쉽게 풀 수 있는 문제이고,

for문의 범위 설정만 조금 신경쓰면 된다.

 

class Solution {
    public int solution(String t, String p) {
       int answer = 0;

       int len = p.length();
       Long num = Long.parseLong(p);

       for(int i=0; i<=t.length()-len; i++){
           if(Long.parseLong(t.substring(i,i+len)) <= num){
               answer ++;
           }
       }
       return answer;
    }
}