题解 | #左旋转字符串#

左旋转字符串

https://www.nowcoder.com/practice/12d959b108cb42b1ab72cef4d36af5ec

function LeftRotateString(str, n)
{
    // write code here
    if(!str) return "";
    for(let i = 0; i < n; i++){
        str = str.slice(1) + str[0]
    }
    return str;
}
module.exports = {
    LeftRotateString : LeftRotateString
};

全部评论

相关推荐

11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
HNU_fsq:建议直接出国,这简历太6了。自愧不如
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务