Hi, it’s quite clear to me what’s considered right or wrong in case of bot contests or puzzles. But when it comes to code golf and optimization challenges, I’m not sure (and therefore, I’d like to ask). My initial assumption was that it should be done “properly”, i.e. no hardcoding, no repeated submission abusing etc. On some challenges, I was satisfied with my leaderboard position (considering time spent on solving them), while on some I was not, e.g. Thor code golf. After browsing the related forum, I realized, that hardcoding is not considered as cheating, instead it’s OK, or even praised by some as an interesting perspective of the challenge. My hardcoded solution was half the length of the proper one and it took a fraction of time compared to the proper one (frankly, it was also half the fun, but well, that’s subjective).
And then there’s also the possibility to abuse the repeated submission. For optimization, I get better results, if I submit the solution 100 times, than if I submit it once. And even bigger difference it makes in code golf challenges, where you can (as an extreme example) create a tiny stupid program that returns random answer and submit it again and again, until it once fits all the tests.
My question is - what’s the official standpoint on those (and ideally on other shady techniques that could be considered as cheating)? I can imagine one of three answers for each X:
- officially OK - people are allowed/encouraged to do X, it’s a part of the competition
- not OK, but not restricted - use X with caution and be prepared to bear consequences (e.g. test cases might change any time, or results can get automatically recalculated any time), as a side effect: you probably need to use X if you want to get to top ranks
- forbidden - anyone caught doing X will be warned/banned/pilloried
Thanks!