当前位置: 代码迷 >> 综合 >> 模拟卷Leetcode【剑指 Offer】Offer_58 - II. 左旋转字符串
  详细解决方案

模拟卷Leetcode【剑指 Offer】Offer_58 - II. 左旋转字符串

热度:126   发布时间:2023-09-26 20:02:07.0

Offer_day03_58 - II. 左旋转字符串

字符串的左旋转操作是把字符串前面的若干个字符转移到字符串的尾部。请定义一个函数实现字符串左旋转操作的功能。比如,输入字符串"abcdefg"和数字2,该函数将返回左旋转两位得到的结果"cdefgab"。

示例 1:

输入: s = “abcdefg”, k = 2
输出: “cdefgab”
示例 2:

输入: s = “lrloseumgh”, k = 6
输出: “umghlrlose”

限制:

1 <= k < s.length <= 10000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/zuo-xuan-zhuan-zi-fu-chuan-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

代码:

import time
from typing import Listclass Solution:def __init__(self):passdef reverseLeftWords(self, s: str, n: int) -> str:return s[n:]+s[:n]def test(data_test):s = Solution()return s.reverseLeftWords(*data_test)if __name__ == '__main__':datas = [["abcdefg",2],]for data_test in datas:t0 = time.time()print('-' * 50)print('input:', data_test)print('output:', test(data_test))print(f'use time:{
      time.time() - t0}s')

备注:
GitHub:https://github.com/monijuan/leetcode_python

CSDN汇总:模拟卷Leetcode 题解汇总_卷子的博客-CSDN博客

可以加QQ群交流:1092754609

leetcode_python.utils详见汇总页说明
先刷的题,之后用脚本生成的blog,如果有错请留言,我看到了会修改的!谢谢!