본문 바로가기

Backend/Algorithm

9. charAt, boolean - 문자열 다루기 기본

 

 

코드:

 

class Solution {
    public boolean solution(String s) {
        boolean answer = true;
        
        if(s.length() != 4 && s.length() != 6)
            return false;
        for(int i=0; i<s.length(); i++){
            char splitS = s.charAt(i);
            if(splitS < '0' || splitS > '9'){
                return false;
            }
        }   
        return answer;
    }
}

 

 

 

 

접근방법: