Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: A better implementation of LCSS? (Yes)

by BrowserUk (Patriarch)
on Nov 13, 2015 at 04:41 UTC ( [id://1147630]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    the quick brown fox
    brownbrownbrownbrown
    ..........00000.....
    
  2. or download this
    xxxyyxxy
    yyyxyxxyyyxyxx
    ...
    abcdefga
    abcdefgabcdefg
    00000000...... False match
    
  3. or download this
    sub lcssN (\$\$;$) {
        my( $ref1, $ref2, $min ) = @_;
    ...
        return unless $match[ 0 ];
        return wantarray ? @match : $match[ 0 ];
    }
    
  4. or download this
    sub lcssN (\$\$;$) {
        my( $ref1, $ref2, $min ) = @_;
    ...
        return unless $match[ 0 ];
        return wantarray ? @match : $match[ 0 ];
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-04-24 07:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found