filter then map chained (no comprehensions), returning a list of rounded integers.raise_low_salaries([45000, 60000, 30000])
[49500, 33000]
60000 is filtered out; the rest gain 10%.
map can consume the filter object directly.
lambda s: round(s * 1.1).