Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Hangman Assistant

by jwkrahn (Abbot)
on Jul 12, 2009 at 06:32 UTC ( [id://779318]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while (<WORD>) {
        chomp;
    ...
        my @chars = split(//, $_);
        push @{$wordlist{$#chars}}, $_;
    }
    
  2. or download this
    while ( <WORD> ) {
        chomp;
    ...
        push @{ $wordlist{ length() } }, $_;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-03-29 11:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found