Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: What is "Schwartzian Transform"

by furry_marmot (Pilgrim)
on Jul 21, 2005 at 17:16 UTC ( [id://476918]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @sorted = 
        sort { int($a->{SP}/100)*100 <=> int($b->{SP}/100)*100 }
        @unsorted;
    
  2. or download this
    @sorted_refs =
        map { $_->[1] }
        sort { $a->[0] <=> $b->[0] }
        map { [ int($_->{SP}/100)*100, $_] }
        @unsorted_refs;
    
  3. or download this
    @sorted_refs =
        map { $_->[2] }
        sort { $a->[0] <=> $b->[0] || $a->[1] <=> $b->[1] }
        map { [ int($_->{SP}/100)*100, DateToTmStr($_->{SaleDate}), $_] }
        @unsorted_refs;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://476918]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-19 22:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found