A program to recognize and reward our most engaged community members
from collections import defaultdict def remove_infrequent_words(wordlist): # Step 1: Create frequency dictionary frequency_dict = defaultdict(int) for word in wordlist: frequency_dict[word] += 1 # Step 3: Create new wordlist new_wordlist = [] for word in wordlist: if frequency_dict[word] >= 1: new_wordlist.append(word) return new_wordlist # Example usage wordlist = ["apple", "banana", "apple", "orange", "grape"] filtered_wordlist = remove_infrequent_words(wordlist) print(filtered_wordlist)
['apple', 'banana', 'apple', 'orange', 'grape']