Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Finding longest palindrome from a string

by tune (Curate)
on Aug 13, 2004 at 08:43 UTC ( [id://382573]=note: print w/replies, xml ) Need Help??


in reply to Finding longest palindrome from a string

A very humble attempt:
sub tune { my $l = ""; map {$l=$_ if ($_ eq reverse $_)&&(length $l<length $_)} split /\s ++/, $_[0]; return $l; }

--
tune

Replies are listed 'Best First'.
Re^2: Finding longest palindrome from a string
by tune (Curate) on Aug 13, 2004 at 08:49 UTC
    Oops, mine won't work with in-string palindromes. Disqualify me. =:(

    --
    tune

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://382573]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-19 19:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found