JavaScript palindrome number

Source: Internet
Author: User

Basic Solutions
function palindrome (str) {  return str.replace (/[\w_]/g, "). toLowerCase () = = =         str.replace ( /[\w_]/g, "). toLowerCase (). Split ("). Reverse (). Join (');}
Intermediate Code Solution
function palindrome (str) {  = str.tolowercase (). Replace (/[\w_]/g, ");    for (var i = 0, len = str.length-1; i < LEN/2; i++) {    if(Str[i]!== str[len-i]) {      returnfalse;    }  }   returntrue;}
Advanced Code Solutions (highest performance)
functionpalindrome (str) {Let front = 0; Let's back= Str.length-1; //Back and front pointers won ' t all meet in the middle, so use (Back > Front)   while(Back >front) {    //increments front pointer if current character doesn ' t meet criteria     while(Str[front].match (/[\w_]/) ) {Front++; Continue; }    //decrements back pointer if current character doesn ' t meet criteria     while(Str[back].match (/[\w_]/) { back--; Continue; }    //finally does the comparison on the current character    if(Str[front].tolowercase ()!== str[back].tolowercase ())return falseFront++; back--; }    //if the whole string has been compared without returning false, it's a palindrome!  return true;}

JavaScript palindrome number

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.