Help for this page

Select Code to Download


  1. or download this
                       push @array, $k;
                    # Sort the array now because we pushed the value in ar
    +ray.
    ...
                            }
                        }
                    }
    
  2. or download this
    @array = sort { $a <=> $b } @array, $k;
    
  3. or download this
    my $index = 0;
    ++$index while $k >= $array[ $index ];
    splice @array, $index, 0, $k;