Task : Rotate an array to the right by a given number of steps.
方法一:使用 pop & insert 的簡易方式
```python
def solutionByPop(A, K):
if(K > 0 and len(A) > 1):
for i in range(0, K):
A.insert(0, A.pop())
return A
```
完整練習題 source code 請參閱:github
沒有留言:
張貼留言