Instruction
Okay, let's start with Question 1!
Exercise
Write a function named clean_and_sort_desc(input_list) that accepts a list of strings and does two things:
- Removes any strings shorter than three characters.
- Sorts the remaining strings in descending order.
The function should return a copy of input_list without modifying the original.



