Help for this page

Select Code to Download


  1. or download this
    @b1 = (1,1,1,4,4);
    @b2 = (1,2,3,4,6);
    
  2. or download this
    @b1 = (1,1,1,1,2);
    @b2 = (3,4,4,4,6);
    
  3. or download this
    sub ind {
      $i = shift;
    ...
        return (\$b2[$i-$#b1-1]) 
      }
    }