Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: "Junkyard" Puzzle: Average of Numbers

by jmcnamara (Monsignor)
on May 14, 2001 at 02:04 UTC ( [id://80113]=note: print w/replies, xml ) Need Help??


in reply to "Junkyard" Puzzle: Average of Numbers


This is 37 chars. I saw Abigail do something like this on clpmisc:
sub average1 { local$"="+";eval("@{$_[0]}")/@{$_[0]} }
This looks prettier when dealing with an ordinary list:
sub average2 { local$"="+";eval("@_")/@_ }
In which case this would be shorter:
sub average3 { eval(join"+",@_)/@_ }
The last one is the same as no_slogan's.

John.
--

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-04-24 23:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found