我试图在 Leetcode 上练习我的 Python 。 问题是 < a href=" https://leetcode. com/ problems/rottate- array/ description/?? envType=study- plan- v2& envId=top- interview- 150" rel= “ nofollow noreferrer>189. 旋转 Array a> 虽然在其他 IDEs 中运行正确, 但在 Leetcode 中仍然错误。 我的代码如下 :
class Solution:
def rotate(self, nums: List[int], k: int) -> None:
"""
Do not return anything, modify nums in-place instead.
"""
from collections import deque
nums = deque(nums)
for i in range(k):
nums.appendleft(nums.pop())
nums = list(nums)
print(nums)
还是不知道 我代码上有什么问题?