This problem requires the removal of stop words from a given list of words. **Example:** Input: ['the', 'quick', 'brown', 'fox', 'is', 'very', 'fast'], Output: ['quick', 'brown', 'fox', 'very', 'fast']. **Constraints:** The input list will contain only lowercase English letters and will not be empty.
Test Cases
Test Case 1
Input:
['the', 'quick', 'brown', 'fox', 'is', 'very', 'fast']Expected:
['quick', 'brown', 'fox', 'very', 'fast]Test Case 2
Input:
['this', 'is', 'a', 'test']Expected:
['this', 'test']+ 3 hidden test cases