Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            editDistance($shortLeft,  $shortRight)  #replace
        );
    }
    
  2. or download this
    $ time perl editDistance.pl
    11 <LMIjkHFSAE:dmqkdjfERZG>
    ...
    real    2m29.329s
    user    1m2.578s
    sys     1m26.452s
    
  3. or download this
    $ time perl editDistance.pl
    11 <LMIjkHFSAE:dmqkdjfERZG>
    ...
    real    0m0.075s
    user    0m0.015s
    sys     0m0.030s
    
  4. or download this
    use strict;
    use warnings;
    ...
    
    memoize("editDistance");
    editDistance(...);