题解 | #回文字符串#

回文字符串

https://www.nowcoder.com/practice/84424799af474ba093b06c29a1f12dfb

const _isPalindrome = string => {
    // 补全代码
    for (let i = 0, j = string.length - 1; i < Math.ceil(string.length / 2), j >= Math.ceil(string.length / 2) - 1; i++, j--) {
        if (string[i] !== string[j]) return false
    }
    return true
}

全部评论

相关推荐

头像
11-26 16:06
已编辑
中南大学 后端
快手电商 后端 23k-35k
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务