Files
math-problems-structure/math_problems_structure/__init__.py

18 lines
451 B
Python

from math_problems_structure.grade_1 import (
compose_and_decompose_numbers,
join_corresponding_sums,
join_pictures_with_quantity,
subtract_with_image_reference,
sum_with_image_reference,
where_are_more_items,
)
__all__ = [
"compose_and_decompose_numbers",
"join_corresponding_sums",
"join_pictures_with_quantity",
"subtract_with_image_reference",
"sum_with_image_reference",
"where_are_more_items",
]