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

(새 문서: ==개요== {{프로그래머스|레벨=0}} * 프로그래머스 입문 캘린더 분류: 프로그래머스 입문 캘린더 분류: 프로그래머스 코딩테스트 입...)
 
 
(같은 사용자의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
{{프로그래머스|레벨=0}}
{{프로그래머스|레벨=0|페이지=10|분류=코딩테스트 입문}}
[[분류: 프로그래머스 입문 캘린더]]
* [[프로그래머스 입문 캘린더]]
* [[프로그래머스 입문 캘린더]]
[[분류: 프로그래머스 입문 캘린더]]
[[분류: 프로그래머스 코딩테스트 입문]]


==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월 29일 (수) 21:38 기준 최신판

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