Beefy Boxes and Bandwidth Generously Provided by pair Networks Bob
go ahead... be a heretic
 
PerlMonks  

Re (tilly) 3: (Golf) Dependency List Prioritization

by tilly (Archbishop)
on Mar 15, 2002 at 10:50 UTC ( [id://152012]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: Re: (Golf) Dependency List Prioritization
in thread (Golf) Dependency List Prioritization

Nice idea.

A few minor nits though. First is that it is customary to only count the body of the sub, so you actually did slightly better than you thought! A second minor issue is that your grep is not quite right - the string "fooey\n" will match /^fooey$/ so you don't really have an equality test.

Further than that, there are some mechanical tricks that can be used to improve scores. Such as using an inline for loop, using map to avoid double loops, and the like. Using those I can take your answer to 75 fairly easily:

sub f{ #23456789_123456789_123456789_123456789_123456789_123456789_123456789_ +12345 %h=@_;$h{$_}||=[]for map@$_,values%h;sort{-1+2*grep$_ eq$b,@{$h{$a}}}k +eys%h }

UPDATE
Oops. I didn't notice the lack of transitivity in your code. This is a fatal flaw as you see with the following data set.

my @list = ( a => ['b'], b => ['c'], c => ['d'], d => ['e'], );

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://152012]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.