Problem
1. Write a loop that removes all strings with length less than four from a linked list of strings called words.
2. Write a loop that prints every second element of a linked list of strings called words.
3. Arrays and lists remember the order in which you added elements; sets do not. Why would you want to use a set instead of an array or list?