汇编语言中有一种移位指令叫做循环左移(ROL),现在有个简单的任务,就是用字符串模拟这个指令的运算结果。对于一个给定的字符序列 S ,请你把其循环左移 K 位后的序列输出。例如,字符序列 S = ”abcXYZdef” , 要求输出循环左移 3 位后的结果,即 “XYZdefabc” 数据范围:输入的字符串长度满足 , 进阶:空间复杂度 ,时间复杂度
示例1
输入
"abcXYZdef",3
输出
"XYZdefabc"
示例2
输入
"aab",10
输出
"aba"
加载中...
public class Solution { public String LeftRotateString(String str,int n) { } }
class Solution { public: string LeftRotateString(string str, int n) { } };
# -*- coding:utf-8 -*- class Solution: def LeftRotateString(self, s, n): # write code here
class Solution { public string LeftRotateString(string str, int n) { // write code here } }
function LeftRotateString(str, n) { // write code here } module.exports = { LeftRotateString : LeftRotateString };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param str string字符串 # @param n int整型 # @return string字符串 # class Solution: def LeftRotateString(self , str: str, n: int) -> str: # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @param n int整型 * @return string字符串 */ func LeftRotateString( str string , n int ) string { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param str string字符串 * @param n int整型 * @return string字符串 */ char* LeftRotateString(char* str, int n ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param str string字符串 # @param n int整型 # @return string字符串 # class Solution def LeftRotateString(str, n) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @param n int整型 * @return string字符串 */ def LeftRotateString(str: String,n: Int): String = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @param n int整型 * @return string字符串 */ fun LeftRotateString(str: String,n: Int): String { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @param n int整型 * @return string字符串 */ public String LeftRotateString (String str, int n) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @param n int整型 * @return string字符串 */ export function LeftRotateString(str: string, n: number): string { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @param n int整型 * @return string字符串 */ func LeftRotateString ( _ str: String, _ n: Int) -> String { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 * @param n int整型 * @return string字符串 */ pub fn LeftRotateString(&self, str: String, n: i32) -> String { // write code here } }
"abcXYZdef",3
"XYZdefabc"
"aab",10
"aba"