feat: add compose and decompose numbers problem

This commit is contained in:
AlanSilvaaa
2026-05-26 11:26:26 -04:00
parent 801cdee331
commit dacf148a34
7 changed files with 182 additions and 0 deletions

View File

@@ -49,3 +49,20 @@ curl -X POST "http://127.0.0.1:8000/math/grade_1/where_are_more_items" \
"seed": 1
}'
```
### Compose and decompose numbers
```
curl -X POST "http://127.0.0.1:8000/math/grade_1/compose_and_decompose_numbers" \
-H "Content-Type: application/json" \
-d '{
"picture": {
"id": "cube",
"name": "Cube",
"image_path": "/images/cube.png"
},
"whole": 10,
"randomize_rows": false,
"seed": 1
}'
```