728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
string solution(string my_string, vector<int> index_list) {
string answer = "";
for(int n : index_list)
{
answer+=my_string[n];
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 문자열 여러 번 뒤집기 (0) | 2023.10.26 |
---|---|
[프로그래머스/C++] Lv.0 9로 나눈 나머지 (0) | 2023.10.26 |
[프로그래머스/C++] Lv.0 배열 만들기 (0) | 2023.10.24 |
[프로그래머스/C++] Lv.0 카운트 업 (0) | 2023.10.24 |
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 3 (0) | 2023.10.20 |