Here are some general guidelines for how to effectively ask for help on the Forum:
Basic Requirements
- Include a link to the problem. For problems that that can be found within the guide, just include the internal Guide URL (ex. Circular Barn).
- Format your post appropriately (especially language-specific code blocks such as the following).
```cpp
// cpp code here ...
int main() {
}
```
Output:
// cpp code here ...
int main() {
}
If you don’t understand the problem solution conceptually:
These are great questions to ask in the Forum! Make sure to let us know what part of the solution doesn’t make sense to you instead of simply saying “I need help on this problem.” If you really don’t understand any part of the solution, that’s fine – you should specify this in your question.
If you’re wondering whether an approach will work, we expect that you’ve already attempted to implement it before asking on the forum.
If you need help debugging your code:
The Forum isn’t a free debugging service!
- We expect that you’ve tried your best before asking for help (though don’t be afraid to ask; the worst that can happen is we’ll let you know that you should try some more yourself first).
-
We expect that you have read through the entire Debugging module before posting.
- If it’s a problem with publicly available test data (ex. USACO), we expect that you’ve checked the test case(s) on which your code is failing.
- We expect that you’ve tried stress testing to generate a small test case on which your solution fails (as described in the module).
What to include:
- Link (as mentioned above)
-
All of your code so others can run it.
- formatted (as described above) and preferably commented
- If there’s a section you think is wrong, mention it.
- What you’ve tried so far.
- We expect that you already tried stress testing, as mentioned above. Include the generator code.
- Which test cases you’re failing on (for USACO, a screenshot suffices).
If you can’t figure out why your program is producing a particular output:
- Add print statements to your code and compare their outputs to what you get when you simulate your program by hand.
- Check for undefined behavior.
If we do not think you have read all of the above, we will refer you back to this post.
Closing Thoughts
Please don’t be afraid to ask for help on this Forum! We’re a friendly community and the worst that can happen is we’ll ask you to revise your question