Help for this page

Select Code to Download


  1. or download this
            if( @seq > 1 and $seq[ -1 ][ 0 ] > ( $seq[ -2 ][ 0 ] + 1 ) ) {
                pop @seq;
    ...
                }
                undef @seq;
    
  2. or download this
            if( @seq > 1 and $seq[ -1 ][ 0 ] > ( $seq[ -2 ][ 0 ] + 1 ) ) {
                my $temp = pop @seq;
    ...
                }
                @seq = $temp;