Hacker News new | ask | show | jobs
by Gollapalli 1335 days ago
Does your bugfix problem actually test said code? Or does it just look for a specific change to be made, because I'm reasonably certain I input multiple correct solutions and they were all marked as having not solved the problem.
1 comments

Yes, the code you enter is compiled and run against a suite of tests. Any change that fixes the function will be accepted.

Any change that doesn't compile (bad syntax) or fails the tests is rejected. Code that produces deadlock or panic or timeout is also rejected.

If you give me an example of a rejected solution, I'll show you why the solution wrong.