반응형
🖥 나의 풀이
class Solution {
public boolean solution(String s) {
if ((s.length() == 4 || s.length() == 6) && s.matches("[0-9]+")) {
return true;
}
else {
return false;
}
}
}
🖥 다른 풀이
class Solution {
public boolean solution(String s) {
if(s.length() == 4 || s.length() == 6){
try{
int x = Integer.parseInt(s);
return true;
} catch(NumberFormatException e){
return false;
}
}
else return false;
}
}
📚 참고 자료
https://alisyabob.tistory.com/297
https://myhappyman.tistory.com/183
반응형
'코딩테스트 연습 > JAVA' 카테고리의 다른 글
[JAVA/알고리즘] 나머지가 1이 되는 수 찾기 (0) | 2022.03.10 |
---|---|
[JAVA/알고리즘] 정수 제곱근 판별 (0) | 2021.07.23 |
[JAVA/알고리즘] 자릿수 더하기 (0) | 2021.07.21 |
[JAVA/알고리즘] 콜라츠 추측 (0) | 2021.07.19 |
[JAVA/알고리즘] 폰켓몬 (0) | 2021.07.18 |