Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Looking for pointers or optimizations.

by hbm (Hermit)
on Aug 21, 2012 at 14:23 UTC ( [id://988755]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my $displayed;
        foreach my $s (split(//, $word)) {
    ...
            }
            $displayed .= " ";
        }
    
  2. or download this
            my $displayed = join" ",
                            map { exists $correct_guesses{$_} ? $_ : '*' }
                            split//, $word;
    
  3. or download this
        print "Fails remaining: $turns\n";
        print "Wrong guesses: ", join(" ", keys %wrong_guesses), "\n";
        print "Your guess: ";
    
  4. or download this
            print "Fails remaining: $turns\n",
                  "Wrong guesses: ", 
                  join(" ", keys %wrong_guesses), "\n",
                  "Your guess: ";
    
  5. or download this
       if (!$guess =~ /[a-z]/ ...
    
  6. or download this
       if ($guess !~ /[a-z]/ ...
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://988755]
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-04-19 03:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found