show/hide this revision's text 6 deleted 32 characters in body

C# in-place algorithm. Any preprocessing, like case insensitivity or stripping of whitespace and punctuation should be done before passing to this function.

boolean IsPalindrome(string s) {
    // a question of definition, but necessary for the loop to work.
    if (s.Length < 2) return true;
    for (int i = 0; i < s.Length / 2; i++)
    {
        if (s[i] != s[s.Length - 1 - i]) return false;
    }
    return true;
}


Edit: removed unnecessary "+1" in loop condition and spent the saved comparison on removing the redundant Length comparison. Thanks to the commenters!

show/hide this revision's text 5 added 125 characters in body

C# in-place algorithm. Any preprocessing, like case insensitivity or stripping of whitespace and punctuation should be done before passing to this function.

boolean IsPalindrome(string s) {
    // a question of definition, but necessary for the loop to work.
    if (s.Length < 2) return true;
    for (int i = 0; i < s.Length / 2+ 1; i++)
    {
        if (s[i] != s[s.Length - 1 - i]) return false;
    }
    return true;
}


Edit: removed unnecessary "+1" in loop condition. Thanks to the commenters!

show/hide this revision's text 4 edited body

C# in-place algorithm. Any preprocessing, like case insensitivity or stripping of whitespace and punctuation should be done before passing to this function.

boolean IsPalindrome(string s) {
    // a question of definition, but necessary for the loop to work.
    if (s.Length < 12) return true;
    for (int i = 0; i < s.Length / 2 + 1; i++)
    {
        if (s[i] != s[s.Length - 1 - i]) return false;
    }
    return true;
}
    Post Made Community Wiki by Community
show/hide this revision's text 3 add grammar
show/hide this revision's text 2 merged a few other answers and a comment
show/hide this revision's text 1