"프로그래머스 120844 배열 회전시키기"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==개요==
==개요==
{{프로그래머스|레벨=0}}
{{프로그래머스|레벨=0|페이지=10}}
* [[프로그래머스 입문 캘린더]]
* [[프로그래머스 입문 캘린더]]
[[분류: 프로그래머스 입문 캘린더]]
[[분류: 프로그래머스 입문 캘린더]]

2023년 11월 11일 (토) 13:23 판

1 개요

프로그래머스 120844 배열 회전시키기

2 C++

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

vector<int> solution(vector<int> numbers, string direction) {
    int offset = direction=="right" ? numbers.size()-1 : 1;
    rotate(numbers.begin(), numbers.begin()+offset, numbers.end());
    return numbers;
}