728x90
반응형
문제
코드
#include <bits/stdc++.h>
using namespace std;
vector<string> solution(string my_string) {
vector<string> answer;
for(int i = 0; i<my_string.length();++i)
{
answer.emplace_back(my_string.substr(i));
cout << answer[i] << " ";
}
sort(answer.begin(),answer.end());
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 문자열의 앞의 n글자 (0) | 2023.11.03 |
---|---|
[프로그래머스/C++] Lv.0 접미사인지 확인하기 (0) | 2023.11.03 |
[프로그래머스/C++] Lv.0 주사위 게임 3 (0) | 2023.11.01 |
[프로그래머스/C++] Lv.0 문자열 뒤집기 (0) | 2023.11.01 |
[프로그래머스/C++] Lv.0 문자열 뒤의 n글자 (0) | 2023.10.31 |