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