Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Golf: Factorials -- 33 but i like it -- (0!=1) or i got 30

by Discipulus (Canon)
on Dec 14, 2015 at 12:20 UTC ( [id://1150222]=note: print w/replies, xml ) Need Help??


in reply to Golf: Factorials


sub fact{ (map{$_[0]*=$_}1..$_[0]-1)[-1]||1 # 33 # only 30 char for numbers bigger than 1 # (map{$_[0]*=$_}1..$_[0]-1)[-1] }


L*
PS some solutions above fails with the number zero that must return 1

PPS in addition, negatives numbers must return undef or Error
perl -e "sub fact{$x=$_;$x<0?'E':(map{$x*=$_}1..$x-1)[-1]||1} print ma +p{fact($_),qq(\n)}@ARGV " 0 1 3 -1 1 1 6 E
There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-20 02:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found