feat: add join-corresponding-sums

This commit is contained in:
AlanSilvaaa
2026-05-26 12:52:01 -04:00
parent 6329f9c06d
commit b4950cee35
9 changed files with 238 additions and 0 deletions

View File

@@ -4,6 +4,21 @@ Test quick examples for each endpoint:
## Grade 1
### Join corresponding sums
```bash
curl -X POST "http://127.0.0.1:8000/math/grade_1/join_corresponding_sums" \
-H "Content-Type: application/json" \
-d '{
"pair_count": 3,
"min_sum": 2,
"max_sum": 10,
"min_addend": 1,
"max_addend": 9,
"seed": 1
}'
```
### Join pictures with quantity
```bash