-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: Split a test into smaller cases #34
Comments
Suggested solution: If the feature above cannot be achieved, there's another alternative: |
This feature cannot be achieved because every problem has a different input structure. But there are some workaround:
|
This comment was marked as outdated.
This comment was marked as outdated.
Here's what I think, how about having a command To further enhance the experience, we should have the option to set the default splitting character |
Hi, any updates on this feature? |
For a test with multiple test cases. e.g let there be 4 test cases, and each test takes a and b as inputs:
Conventionally,
competitest
would just store this test into a single file (input0.txt), but instead, I'd like it to be broken down into smaller cases (e.g storing the tests in files input0, input1, input2, and input3), with each file in the following format:This makes it easier to debug while in the contest
The text was updated successfully, but these errors were encountered: