Practice · 1 of 4
Function pipeline
CHALLENGE
Difficulty: beginner+25 XP
Implement static int Pipe(int input, params Func<int, int>[] steps) — apply each function in order to the result of the previous. Empty/null steps → input unchanged.
Press Submit to check your solution.
Back to lesson: Practice: Delegates workout