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

1 개요[ | ]

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

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

string solution(string my_string, int n) {
    return my_string.substr(my_string.length()-n);
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}