from typing import List
# Function to find words in str1 that are not in str2
def unique_words(str1: str, str2: str) -> List[str]:
words1 = set(str1.split())
words2 = set(str2.split())
unique = words1 - words2
return list(unique)
# Example usage
string1 = "The quick brown fox...