Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: implementing a scrabble-esque game on Termux III

by Aldebaran (Curate)
on Nov 23, 2019 at 18:16 UTC ( [id://11109120]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    patterns----------------
    (
      [0, "..e......."],
    ...
      [55, "......e..."],
      [55, ".......s.."],
      [66, "..d......."],
    
  2. or download this
          my $underpat = qr/[^@under@tiles]/;
          say "underpat is $underpat";
          my @words = grep {
    ...
              && !/$underpat/
              && /^$pat$/
              && ( ( $old ^ $_ ) !~ /^\0+\]$/ )    # adding just an 's' no
    +t allowed
    
  3. or download this
    underpat is (?^u:[^mh h i m q r t])
    underpat is (?^u:[^mh h i m q r t])
    underpat is (?^u:[^e m e r o i dh h i m q r t])
    ...
    underpat is (?^u:[^dh h i m q r t])
    underpat is (?^u:[^dh h i m q r t])
    underpat is (?^u:[^dh h i m q r t])
    
  4. or download this
    say "new mask is $newmask";
        substr $heights, $pos, length $highs,
          ( $highs & $newmask ) =~ tr/0-4/1-5/r | ( $highs & ~$newmask );
    

Log In?
Username:
Password:

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

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

    No recent polls found