Since the palindrome code golf was a big hit, here is one that doesn't rely on built in functions.
What is the shortest (in characters) way to write a factorial function?
|
5
|
Since the palindrome code golf was a big hit, here is one that doesn't rely on built in functions. What is the shortest (in characters) way to write a factorial function? |
|||
|
|
|
|
The most brief version in AS3 at 37 characters:
Which is the stripped down version of the more readable:
|
|||
|
|
|
|
Skipping the obvious
for a total of 44 characters. This is a more efficient algorithm than the freshman year recursion example, which weights in at a mere 28 characters.
Of course, a list-based solution is even shorter (15 characters).
When golfing in Mathematica, you can save a lot of strokes by (ab)using its very terse syntax for pure functions and function application. |
|||
|
|
|
|
Clojure - 36 charsI'm learning Clojure right now (a dialect of Lisp), so I thought I'd do one in that.
To be called like so:
Two characters can be shaved off by binding an anonymous function to
|
|||
|
|
|
|
C# 41:
C# 49, decimal
C# int formatted:
|
|||
|
|
|
|
66 bytes of ARM assembly (thumb2). Not as short as many, but produces a bignum result. I'm sure that a few more bytes could be saved with some care.
|
|||
|
|
|
|
Lua45 charsSince Lua wasn't on here already.
|
|||
|
|
|
|
PHP - 59 chars
|
|||
|
|