in reply to Sort on boredom
Just for the heck of it:
p
or as a 1-liner:#!/usr/bin/perl -w use Data::Dumper; $Data::Dumper::Indent = 1; @vals = qw( 1 2 3 1 3 3 3 43 bob 2 bob 6 2 ); my @sorted = sort { $#$b <=> $#$a or $a cmp $b } keys %{{ map { @$_ = ( @$_, $_ ); $_ => 1 } @vals }}; print Data::Dumper->Dump([\@sorted], ['*sorted']);
perl -le '$,=", ";print sort { $#$b <=> $#$a or $a cmp $b}'\ -e 'keys %{{ map {@$_ = (@$_, $_); $_=>1} @ARGV}};'\ 0 _ __ 0 __ __ 0 0 00 @ % $ % ^ ^_ result-> 0, __, %, $, 00, @, ^, ^_, _
p
|
---|
Replies are listed 'Best First'. | |
---|---|
(Ovid) Re(2): Sort on boredom
by Ovid (Cardinal) on Mar 23, 2001 at 23:44 UTC | |
by petral (Curate) on Mar 24, 2001 at 02:49 UTC |
In Section
Meditations