알고리즘 26일차

Panther·2021년 8월 30일
0

Algorithm

목록 보기
14/15

문제 출처: https://leetcode.com/problems/rotate-array/

func rotate(_ nums: inout [Int], _ k: Int) {

    if k == 0 {
        
    } else {
        for _ in 1...k {
            let first = nums.removeLast()
            nums.insert(first, at: 0)
        }
    }
    
}

0개의 댓글