19 lines
441 B
Python
19 lines
441 B
Python
from app.problems.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",
|
|
]
|