字符串或数组的翻转,比如输入’hello’, return ‘olleh’.
1 | class Solution(object): |
如果要求把字符串或数组向左或右移动k位,也可以通过reverse的方法做
1 | class Solution(object): |
字符串或数组的翻转,比如输入’hello’, return ‘olleh’.
1 | class Solution(object): |
如果要求把字符串或数组向左或右移动k位,也可以通过reverse的方法做
1 | class Solution(object): |