题解 | #回文字符串#

回文字符串

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

   const _isPalindrome = string => {
                // 补全代码
                let left = 0;
                let right = string.length-1;
                let strL = null;
                let strR = null;
                while(left<=right){
                     strL = string[left];
                     strR = string[right];
                    if(strL!==strR){
                        return false;
                    }else{
                        left++;
                        right--;
                    }
                }
                return true;
            }

全部评论

相关推荐

10-06 12:46
门头沟学院 Java
跨考小白:定时任务启动
点赞 评论 收藏
分享
头像
11-09 17:30
门头沟学院 Java
TYUT太摆金星:我也是,好几个华为的社招找我了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务