I'm going crazy: Where is the Ruby function for factorial? No, I don't need tutorial implementations, I just want the function from the library. It's not in Math!
I'm starting to doubt, is it a standard library function?
|
It's not in the standard library but you can extend the Integer class.
N.B. Iterative factorial is a better choice for obvious performance reasons. |
|||||||||||||||||
|
|
You could also use |
|||||||||
|
|
I just wrote my own:
Also, you can define a falling factorial:
|
|||
|
|
|
Shamelessly cribbed from http://rosettacode.org/wiki/Factorial#Ruby, my personal favorite is
This implementation also happens to be the fastest among the variants listed in Rosetta Code. |
|||
|
|||
|
|
6.downto(1).inject(:*)– mckeed Mar 12 '10 at 17:26(1..6).inject(:*)which is a bit more succinct. – sepp2k Mar 12 '10 at 17:30(1..num).inject(:*)fails for the case wherenum == 0.(1..(num.zero? ? 1 : num)).inject(:*)gives the correct answer for the 0 case and returnsnilfor negative parameters. – Yogh Dec 20 '11 at 9:19