Practice · 1 of 4
Filter and shape
CHALLENGE
Difficulty: beginner+25 XP
Implement static List<string> LongUpper(IEnumerable<string> words) — words of length ≥ 3, uppercased, original order; and static List<int> Lengths(IEnumerable<string> words) — just the lengths, same order. Null input → empty lists.
Press Submit to check your solution.
Back to lesson: Practice: LINQ workout