프로그래머스 Lv.0 접두사인지 확인하기개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2024. 1. 7. 02:37
Table of Contents
<Solution>
class Solution {
public int solution(String my_string, String is_prefix) {
int answer = 1;
if(is_prefix.length() > my_string.length()) {
answer = 0;
} else {
String str = my_string.substring(my_string.length() - is_prefix.length());
if(!str.equals(is_prefix)) {
answer = 0;
}
}
return answer;
}
}
<Others Solution>
class Solution {
public int solution(String my_string, String is_suffix) {
if(my_string.endsWith(is_suffix)) {
return 1;
} else {
return 0;
}
}
}
728x90
@rlozlr :: 얼렁뚱땅 개발자
얼렁뚱땅 주니어 개발자
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!