我是靠谱客的博主 深情烧鹅,最近开发中收集的这篇文章主要介绍Leetcode 剑指 Offer 58 - II. 左旋转字符串 LCOF - Python,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
class Solution:
def reverseLeftWords(self, s: str, n: int) -> str:
m = len(s)
temp = list(s)
temp.extend(['']*n)
front, rear = 0, m
for i in range(0,n):
temp[rear] = temp[front]
rear += 1
front += 1
return ''.join(temp[n:n+m])
第二个方法,先反转前k个,再反转k到结尾的所有字母,最后反转整个字符串
class Solution:
def reverseLeftWords(self, s: str, n: int) -> str:
return s[n:] + s[0:n]
最后
以上就是深情烧鹅为你收集整理的Leetcode 剑指 Offer 58 - II. 左旋转字符串 LCOF - Python的全部内容,希望文章能够帮你解决Leetcode 剑指 Offer 58 - II. 左旋转字符串 LCOF - Python所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复