Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Finding longest palindrome from a string

by Random_Walk (Prior)
on Aug 13, 2004 at 09:29 UTC ( [id://382586]=note: print w/replies, xml ) Need Help??


in reply to Finding longest palindrome from a string

Nice puzzle, I offer my humble attempt
sub Random_Walk { my ($left, $right, $pal, $i)=("", "", "", 1); my $test=join " ", @ARGV; for (; $i<((length $test)/2)+2; $i++) { $left.="(.)"; $right="(\\$i)".$right; if ($test=~/$left.?$right/) {$pal=$&; next} return $pal; } }
I tried a recursive one first which was fun but I had to do lots of work to cut the string into different slices so regex it is.

cnn, Thanks for the hint on code blanking.

Off by two error fixed in the for loop

Added .? in the middle to allow palindromes symetrical around a single character (borrowed that idea from ccn ;)

Replies are listed 'Best First'.
Re^2: Finding longest palindrome from a string
by ccn (Vicar) on Aug 13, 2004 at 09:32 UTC
    I do not know how to black the code out

    You can use

    <table><tr><td bgcolor="#000000" color="#000000"> [[[ YOUR CODE HERE ]]] </td></tr></table>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-25 12:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found