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

Re: Re: Algorithm::Diff icult to use

by bart (Canon)
on Aug 21, 2002 at 17:25 UTC ( [id://191802]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my $diff= easy( \@a, \@b );
        foreach ( @$diff ) {
            my( $same, $aMin, $aMax, $bMin, $bMax )= @$_;
            ...  # rest of code snipped because unaltered
        }
    
  2. or download this
        my $diff= easy( \@a, \@b );
        while (my $row = shift @$diff ) {
            my( $same, $aMin, $aMax, $bMin, $bMax )= @$row;
            ...  # rest of code snipped because unaltered
        }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-26 00:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found