You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Coding Club of IIIT Vadodara hosts frequent programming competitions in which the members come up with questions and test cases. I would like to know that how the question curator come up with questions and test cases and what is the flow of adding a question to a contest. Also, is there any screening process for the questions?
The text was updated successfully, but these errors were encountered:
Generally, we tend to use the domain which we haven't used earlier or the problem of which were least solved by anyone in past ones or which are very much useful for any programmer to learn along with the difficulty of such.
e.g. Dynamic Programming, String Manipulation, Math-based etc.
After the selection of domain, member chooses the domain he/she wants to create a question in (along with some nice story 😛 )
The question the curator comes up with is a good one but needs some reviews for that 2-3 other people review the question's details (content), test cases, editorial. Also for every question, there is always a tester.
Right now there is no such defined screening process but it is ensured that the question has an understandable language, test cases are correct and pass in given constraints, the solution given in editorial and tester solutions both work for given question.
My view of creating a question:
Focus more on what you are trying to achieve through the problem, frame the story accordingly.
Decide the time limit and constraints for which the problem won't face any problem in any programming language
For generating test cases, I write a small python script and vary them over the constraint making some test cases easy to pass while making some of them take a lot of execution time.
The Coding Club of IIIT Vadodara hosts frequent programming competitions in which the members come up with questions and test cases. I would like to know that how the question curator come up with questions and test cases and what is the flow of adding a question to a contest. Also, is there any screening process for the questions?
The text was updated successfully, but these errors were encountered: