[LeetCode]剑指 Offer 58 - II. 左旋转字符串
Posted Spring-_-Bear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode]剑指 Offer 58 - II. 左旋转字符串相关的知识,希望对你有一定的参考价值。
字符串的左旋转操作是把字符串前面的若干个字符转移到字符串的尾部。请定义一个函数实现字符串左旋转操作的功能。比如,输入字符串"abcdefg"和数字2,该函数将返回左旋转两位得到的结果"cdefgab"。
示例 1:
输入: s = “abcdefg”, k = 2
输出: “cdefgab”
示例 2:
输入: s = “lrloseumgh”, k = 6
输出: “umghlrlose”
限制:
1 <= k < s.length <= 10000
/**
* 剑指 Offer 58 - II. 左旋转字符串
*/
public String reverseLeftWords(String s, int n)
return s.substring(0, n) + s.substring(n);
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/zuo-xuan-zhuan-zi-fu-chuan-lcof
以上是关于[LeetCode]剑指 Offer 58 - II. 左旋转字符串的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode(剑指 Offer)- 58 - II. 左旋转字符串
LeetCode(剑指 Offer)- 58 - II. 左旋转字符串
LeetCode剑指 Offer 58 - II. 左旋转字符串(C++)
[LeetCode]剑指 Offer 58 - I. 翻转单词顺序