左旋转字符串
字符串的左旋转操作是把字符串前面的若干个字符转移到字符串的尾部。请定义一个函数实现字符串左旋转操作的功能。比如,输入字符串"abcdefg"和数字2,该函数将返回左旋转两位得到的结果"cdefgab"。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/zuo-xuan-zhuan-zi-fu-chuan-lcof
- 题解
class Solution: def reverseLeftWords(self, s: str, n: int) -> str: return(s[n:]+s[:n])
- 解题思路
主要利用了python中的切片,通过n将字符串切成两个部分,直接返回n后面的所有字符加上开始到n的字符。