Загрузка данных


def filter_unique_words(text: str) -> list:
    return sorted(list(set(text.split())))