You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromcollectionsimportCounterdefcheck_words(article: str, text: str) ->bool:
text=text.split(" ")
article=article.split(" ")
ifCounter(text) -Counter(article):
returnFalsereturnTrue# check_words("ARTICLE", "W O R D S")check_words("Welcome to our ship! Hello world 123 123", "Hello world 123") # Truecheck_words("Welcome to our ship! Hello world 123 123", "Hello world 123 123") # Truecheck_words("Welcome to our ship! Hello world 123 123", "Hello world 123 123 123") # False