vote up 15 vote down star
9

The goal: Any language. The smallest function which will return whether a string is a palindrome. Here is mine in Python:

R=lambda s:all(a==b for a,b in zip(s,reversed(s)))

50 characters.

The accepted answer will be the current smallest one - this will change as smaller ones are found. Please specify the language your code is in.

flag
show 7 more comments

41 Answers

prev 1 2
vote up 1 vote down

Haskell, 28 chars, needs Control.Arrow imported.

p=uncurry(==).(id&&&reverse)
link|flag
1  
Well, than you will have to add that import line to your code, don't you? – Svante Jan 23 at 4:46
show 1 more comment
vote up 0 vote down

Java:

boolean y(StringBuffer x){return x.equals(x.reverse());}

The above doesn't work, oops!

boolean y(StringBuffer x){return x.toString().equals(x.reverse().toString()); }

Ew.

link|flag
vote up 0 vote down

CFScript, 39 characters:

function y(x){return(x is reverse(x));}

I was never very good at golf.

link|flag
vote up 0 vote down

PHP:

function p($s){return $s==strrev($s);} // 38 chars

or, just

$s==strrev($s); // 15 chars
link|flag
show 1 more comment
vote up 22 vote down

Haskell, 15 chars:

p=ap(==)reverse

More readable version, 16 chars:

p x=x==reverse x
link|flag
show 1 more comment
vote up 2 vote down
(equal p (reverse p))

lisp. 18 characters.

ok, this is a special case. This would work if typed directly into a lisp interpreter and p was already defined.

otherwise, this would be necessary:

(defun g () (equal p (reverse p)))

28 characters.

link|flag
1  
Not fair :) You have to add (defun ....) and count it in – ADEpt Oct 23 '08 at 6:31
show 4 more comments
vote up 3 vote down

73 clean, readable, chars written in java

boolean p(String s){return s.equals(""+new StringBuffer(s).reverse());}

peace :)

link|flag
1  
We're talking code-golf here. Readability is irrelevant. – JesperE Oct 23 '08 at 18:27
show 5 more comments
vote up 9 vote down

Perl (27 chars):

sub p{$_[0]eq reverse$_[0]}

Ruby (24 chars):

def p(a)a==a.reverse end
link|flag
show 6 more comments
vote up 20 vote down

Another python version that is rather shorter (21 chars):

R=lambda s:s==s[::-1]
link|flag
show 2 more comments
vote up 2 vote down

My attempt in C (70 chars):

P(char*s){char*e=s+strlen(s)-1;while(s<e&&*s==*e)s++,e--;return s>=e;}

[Edit] Now actually working
[Edit 2] Reduced from 74 to 70 by using default int return

In response to some of the comments: I'm not sure if that preprocessor abuse counts - you could just define the whole thing on the command line and make the function one character.

link|flag
show 5 more comments
vote up 30 vote down

Here's mine; it's written in a domain-specific language I invented, called 'palindrome'.

p

Edit: Less flippant version (i386 asm, AT&T syntax)

xor %eax, %eax
mov %esi, %edi
#cld    not necessary, assume DF=0 as per x86 ABI
repne scasb
scan:
    dec %edi
    cmpsb
    .byte 0x75, 6    #jnz (short) done
    dec %edi
    cmp %esi, %edi
    .byte 0x72, -9    #jb (short) scan
inc %eax
done:

16 bytes, string pointer goes in ESI, result is in EAX.

link|flag
show 8 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.