show/hide this revision's text 3 added performance info

Haskell:

\n->product[1..n]

17 characters, 20 with reasonable whitespace. As a named function:

fac n = product [1..n]

22 characters. Without using product:

fac n = foldr (*) 1 [1..n]

26 characters

These (largely equivalent) implementations have no stack overflow or integer overflow errors. Compiled with ghc, this calculates and prints all 35661 digits of 10000! in 0.11s and all 456575 digits of 100000! in 11.145s on my two year old laptop. Of course, there are doubtless faster algorithms, but that's not bad performance for a naive solution.

show/hide this revision's text 2 added 28 characters in body

Haskell:

\n -> product [1..n]

20 n->product[1..n]

17 characters, 20 with reasonable whitespace. As a named function:

fac n = product [1..n]

22 characters. Without using product:

fac n = foldr (*) 1 [1..n]

26 characters

show/hide this revision's text 1

Haskell:

\n -> product [1..n]

20 characters. As a named function:

fac n = product [1..n]

22 characters. Without using product:

fac n = foldr (*) 1 [1..n]

26 characters

    Post Made Community Wiki by Community