배열 회전 Rotate Array - LeetCode Can you solve this real interview question? Rotate Array - Given an integer array nums, rotate the array to the right by k steps, where k is non-negative. Example 1: Input: nums = [1,2,3,4,5,6,7], k = 3 Output: [5,6,7,1,2,3,4] Explanation: rotate 1 step leetcode.com 정수 배열이 주어지면 nums배열을 단계적으로 오른쪽으로 회전합니다 k. 여기서 k는 음수가 아닙니다. 예시 1: 입력: nums = [1,2,3,4,5,6,7], k = 3 출력:..