class Solution {
public int solution(String my_string, String is_prefix) {
for(int i=1; i<=my_string.length(); i++) {
if(my_string.substring(0, i).equals(is_prefix))
return 1;
}
return 0;
}
}
class Solution {
public int solution(String my_string, String is_prefix) {
if (my_string.startsWith(is_prefix)) return 1;
return 0;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 이어 붙인 수 (0) | 2023.05.07 |
---|---|
[프로그래머스/자바] 홀수 vs 짝수 (0) | 2023.05.04 |
[프로그래머스/자바] 가위 바위 보 (0) | 2023.05.04 |
[프로그래머스/자바] 배열 만들기 1 (0) | 2023.05.02 |
[프로그래머스/자바] 짝수는 싫어요 (0) | 2023.05.02 |