코드:
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;
}
}
접근방법:
'Backend > Algorithm' 카테고리의 다른 글
11. copyOfRange, sort - K번째 수 (0) | 2020.10.31 |
---|---|
10. greedy - 체육복 (0) | 2020.10.30 |
8. for, sum - 두 정수 사이의 합 (0) | 2020.10.29 |
7. charAt, substring - 가운데 글자 가져오기 (0) | 2020.10.29 |
6. Math.max , ArrayList - 모의고사 (0) | 2020.10.29 |