feat: add where are more items problem

This commit is contained in:
AlanSilvaaa
2026-05-26 09:58:49 -04:00
parent 494ff27c06
commit 801cdee331
8 changed files with 244 additions and 4 deletions

View File

@@ -55,8 +55,8 @@ For a new grade, follow the same pattern:
## Naming Conventions
- Endpoint paths use the existing style: `/math/1_grade/<problem_name>`.
- Python package names should use valid identifiers like `grade_1`, not `1_grade`.
- Endpoint paths use the existing style: `/math/grade_1/<problem_name>`.
- Python package names should use valid identifiers like `grade_1`.
- Problem files should use snake case, for example `join_pictures_with_quantity.py`.
- Request schema names should end in `Request`.
- Response schema names should describe the generated problem, for example `JoinPicturesWithQuantityProblem`.