Apply Python's core functional tools to transform, filter, and aggregate numbers.
Constraints
Example
>>> double_all([1, 2, 3]) [2, 4, 6] >>> even_only([1, 2, 3, 4]) [2, 4] >>> sum_all([1, 2, 3, 4]) 10 >>> sum_all([]) 0
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints