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

(새 문서: ==개요== {{프로그래머스|레벨=0}} * 프로그래머스 입문 캘린더 분류: 프로그래머스 입문 캘린더 분류: 프로그래머스 코딩테스트 입...)
 
7번째 줄: 7번째 줄:
==C++==
==C++==
<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp'>
#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;
}
</syntaxhighlight>
</syntaxhighlight>

2023년 11월 11일 (토) 03:36 판

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;
}