Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: I wrote some clever code - can the comment "defuse" it?

by dws (Chancellor)
on Jun 17, 2003 at 22:04 UTC ( [id://266659]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      my @letter_seq = map {
          $curr->[STYLE]
          . ":"
          . join(',', splice(@letter, 0, length $_))
      } join('', @property{@letter}) =~ s/\(G|D+|L+)/g;
    
  2. or download this
        my $flattened_properties = join('', @property{@letter});
        my @letter_seq = map {
    ...
            . ":"
            . join('', splice(@letter, 0, length $_))
        } $flattened_properties =~ /\G(X|D+|L+)/g;
    

Log In?
Username:
Password:

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

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

    No recent polls found