vote up 0 vote down star

There are quite a few code golf questions on Stackoverflow.com now. The challenge is always to produce a program with as few characters as possible. Is that really a sensible metric, in the context of the challenge?

My reasoning is that some languages just happen to use longer keywords. For example, Clojure defines a function with defn, while Scheme does it with define. This means that Clojure has an advantage in "character code golf", all other things assumed equal. I don't think that this makes Clojure any more concise than Scheme.

I would propose to use the number of nodes in the abstract syntax tree instead. Of course, this begs additional questions, e.g. how should qualified class methods be counted, like "System.out.println()", and is this distinguishable from Ruby-like "data.filter(x).sort(y)"?

Is this sensible?

edit: I know that code golf is just "silly fun", but it needs not be that silly. Stripping whitespace and shortening variable names really doesn't add to the challenge, or to the "wow" factor.

flag
3  
Given that the challenge rules are arbitrary to begin with, no. – Shog9 May 31 at 0:31
3  
Honestly, who cares? The point in code golf is simply to see how short you can make a program. If switching language is allowed, and it can make your language shorter, that's what you have to do to win. Last I checked, stackoverflow was not hosting the olympic codegolf championships. But congratulations, you've taken a problem that didn't need solving, and replaced one arbitrary solution with another equally arbitrary one. – jalf May 31 at 0:35
Code golf is really just meant to be fun. It not only gives others a sampling of what your favorite language(s) can do, it also gets you to explore said favorite language(s) more yourself. I learned a lot more about MATLAB's regex capabilities by trying out a couple of code golf questions. IMHO, there's no real need to argue over the strictness of the rules. – gnovice May 31 at 0:49

closed as not a real question by Rob, Adam Rosenfield, sth, dF, George Stocker May 31 at 1:04

1 Answer

vote up 3 vote down

Whenever I read golf solutions, I consider the verboseness of the language and the character count together, forming a combined score in my head, which gives me a good judgment of how ingenuitive a solution is.

Plus, code golf is so silly and fun, having such stringent guidelines seems pointless.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.