Help for this page

Select Code to Download


  1. or download this
    
    sub SuggestionSort {
    ...
        }
        grep defined, @sorted;
    }
    
  2. or download this
    use strict;
    
    ...
    my @sortme = qw(foo bar baz cat dog elephant bird);
    
    print join(", ", &SuggestionSort(\@sortme, \@order)),"\n";