접미사인지 확인하기 Lv. 0

박영준·2023년 5월 31일
0

코딩테스트

목록 보기
174/300
class Solution {
    public int solution(String my_string, String is_suffix) {
        int answer = 0;
        return answer;
    }
}


해결법

방법 1

class Solution {
    public int solution(String my_string, String is_suffix) {
        return my_string.endsWith(is_suffix)? 1 : 0;
    }
}
  • endsWith()
    • 대상 문자열이 특정 문자 또는 문자열로 끝나는지 체크하는 함수
    • boolean에 맞춰 true/false 값을 리턴
    • 공백도 취급한다

접미사인지 확인하기 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글