Rotate Array
- Explore : Interview > Top Interveiw Questions > Easy Collection
- 분류 : Array
- 난이도 : Medium
Problem
Given an array, rotate the array to the right by k steps, where k is non-negative
Example 1
1 | Input: nums = [1,2,3,4,5,6,7], k = 3 |
Example 2
1 | Input: nums = [-1,-100,3,99], k = 2 |
Constraints
1 <= nums.length <= 2 * 10^4
-2^31 <= nums[i] <= 2^31 - 1
0 <= k <= 10^5
Solution (Not supported in LeetCode)
Exapnder
1 | class Solution { |
Solution
Exapnder
1 | class Solution { |
Point of Thinking
- K를 기준으로 reverse를 3번하면 된다.
- LeetCode에서는 IntArray.reverse()를 지원하지않는다..
- 결국 2중 for loop로 풀었다.