Answers for "a number is palindrome or not"

0

check if a string is a palindrome

int length = myString.Length;
for (int i = 0; i < length / 2; i++)
{
    if (myString[i] != myString[length - i - 1])
        return false;
}
return true;
Posted by: Guest on October-30-2021
0

what is palindrome

function Palindrome(str) { 

  str = str.replace(/ /g,"").toLowerCase();
  var compareStr = str.split("").reverse().join("");

  if (compareStr === str) {
    return true;
  } 
  else {
    return false;
  } 

}
Posted by: Guest on June-17-2021
-1

palindrome no example

171, 181, 191, 202
Posted by: Guest on June-04-2021

Code answers related to "a number is palindrome or not"

Browse Popular Code Answers by Language