While reviewing late answers, I came across Fixing a broken loop by changing exactly one character:
The following is a piece of C code, whose intention was to print a minus sign 20 times. But you can notice that, it doesn't work.
#include <stdio.h> int main() { int i; int n = 20; for( i = 0; i < n; i-- ) printf("-"); return 0; }Well fixing the above code is straight-forward. To make the problem interesting, you have to fix the above code, by changing exactly one character. There are three known solutions. See if you can get all those three.
It seemed to be a good fit for code-golf, as the goal was to "solve" the problem in as few bytes of source code as possible, which corresponds to the help text that comes up when I moused over the code-golf tag (emphasis mine):
Code-golf is a competition to solve a particular problem in the fewest bytes of source code. Please flag new questions for moderator attention to be set to community wiki.
But then I started digging a little deeper and started reviewing the info page for the code-golf tag, and now I'm not so sure:
- There should be a complete, unambiguous specification of the problem. It must include at least:
- How should the answer be presented — should a bare function be acceptable, or it must include full input/output code?
- The input format.
- The output format.
- A clear description of how the input and output are related.
- Explicit statement of any error checking or recovery that should be performed (because fragile solutions are, well, par for the course)
- Example inputs and outputs.
It doesn't seem like the above question meets any of these criteria.
Was I correct in re-tagging the question, or was my understanding of code golf naïve?