You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
295 B

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# 1.5 翻转数组
## (1). 解题思路
`python`中的列表数组等支持切片操作,并且切片操作中可以指定步长,如果步长为负,则倒着走,这里需要翻转数组,只需要把步长设为-1即可。
## (2). 运行结果
![](images/result.png)