Level 0. 문자열 여러 번 뒤집기
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
string solution(string my_string, vector<vector<int>> queries)
{
for (vector<int>& query : queries)
reverse(my_string.begin() + query[0], my_string.begin() + ++query[1]);
return my_string;
}
'자료구조 & 알고리즘 > 프로그래머스' 카테고리의 다른 글
Level 0. 주사위 게임 3 (0) | 2023.05.06 |
---|---|
Level 0. 세 개의 구분자 (0) | 2023.05.05 |
Level 0. 전국 대회 선발 고사 (0) | 2023.05.04 |
Level 0. 빈 배열에 추가, 삭제하기 (0) | 2023.05.04 |
Level 0. 정수를 나선형으로 배치하기 (0) | 2023.05.03 |