16 lines
505 B
Python
16 lines
505 B
Python
from app.problems.grade_1.compose_and_decompose_numbers import (
|
|
compose_and_decompose_numbers,
|
|
)
|
|
from app.problems.grade_1.join_pictures_with_quantity import (
|
|
join_pictures_with_quantity,
|
|
)
|
|
from app.problems.grade_1.sum_with_image_reference import sum_with_image_reference
|
|
from app.problems.grade_1.where_are_more_items import where_are_more_items
|
|
|
|
__all__ = [
|
|
"compose_and_decompose_numbers",
|
|
"join_pictures_with_quantity",
|
|
"sum_with_image_reference",
|
|
"where_are_more_items",
|
|
]
|