Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Generate Multi-word Anagrams

by QM (Parson)
on Jan 25, 2005 at 22:36 UTC ( [id://425069]=note: print w/replies, xml ) Need Help??


in reply to Generate Multi-word Anagrams

I noticed this lines gives an error when there are no words of a given length:
$size[$_] = @{ $list[ $_ ] } for 1..$phrase_length;
The error is:
Can't use an undefined value as an ARRAY reference at anagram.pl line +34.
I fixed it with this:
for my $length ( 1..$phrase_length ) { my $ref = ref $list[ $length ]; $size[$length] = ( $ref =~ /ARRAY/ ? @{ $list[ $length ] } : 0 ); }
(I didn't find an easier way, though I didn't look too hard.)

I'd be interested in seeing any improvements you (or anyone else) has made to this offline.

-QM
--
Quantum Mechanics: The dreams stuff is made of

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-24 02:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found