Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Is there a better way?

by runrig (Abbot)
on Aug 04, 2001 at 03:25 UTC ( [id://102190]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @dict = qw (foo oof fff bar baz);
    $letters = 'ofo';
    ...
    push @{$dict{rle(sort split '',$_)}}, $_ for @dict;
    $words = $dict{rle(sort split '',$letters)} || [];
    print "$_\n" for @$words;
    
  2. or download this
    my %dict;
    push @{$dict{join('', sort split '',$_)}}, $_ for @dict;
    $words = $dict{join('', sort split '',$letters)} || [];
    print "$_\n" for @$words;
    

Log In?
Username:
Password:

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

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

    No recent polls found