[프로그래머스] 문자열 뒤의 n글자

Seah Lee·2023년 6월 27일
0

프로그래머스

목록 보기
41/57
post-custom-banner

class Solution {
    public String solution(String my_string, int n) {       
        return my_string.substring(my_string.length()-n,my_string.length());
    }
}

오늘 문제는 substring 관련이 많네

profile
성장하는 개발자

0개의 댓글