문제 출처: 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)
}
}
}