[알고리즘] LeetCode - Rotate Array
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만큼 오른쪽으로 회전하고 마지막에 있는 수는 제일 앞으로 이동시킨다. 문제 해결 논리형 배열 v에 덮어쓴 여부를 체크한다. 덮어..
2023. 8. 25.