728x90
반응형
문제
코드
#include <iostream>
using namespace std;
string solution(string my_string, int s, int e) {
string answer = my_string;
reverse(answer.begin() + s, answer.begin() + e + 1);
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 접미사 배열 (0) | 2023.11.01 |
---|---|
[프로그래머스/C++] Lv.0 주사위 게임 3 (0) | 2023.11.01 |
[프로그래머스/C++] Lv.0 문자열 뒤의 n글자 (0) | 2023.10.31 |
[프로그래머스/C++] Lv.0 간단한 논리 연산 (0) | 2023.10.31 |
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 4 (0) | 2023.10.31 |