Help for this page

Select Code to Download


  1. or download this
        my (@less, @equal, @greater, @answer);
    
  2. or download this
        unshift(@answer, @equal); # was @equals
    
  3. or download this
    My pivot is 5
    My pivot is 3
    My pivot is 6
    answer: 9 6 5 4 3 1
    
  4. or download this
      if ($_ < $pivot) {
        push(@less, $_);
    ...
        push(@equal, $_);
      }
      # etc...