- or download this
sub list_sort {
my @vals = @_;
... code to sort list ...
return @sorted_list;
}
- or download this
sub list_sort {
my @vals = @_;
...
return list_sort(@smaller), list_sort(@larger);
}
- or download this
sub list_sort {
my @vals = @_;
...
return list_sort(@smaller), list_sort(@larger);
}
- or download this
sub list_sort {
my @vals = @_;
...
return list_sort(@smaller), list_sort(@larger);
}
- or download this
$ cat qsort.pl
#!/usr/bin/env perl
...
returning (d e f g h i)
returning (a b c d e f g h i)
DONE: a b c d e f g h i