Update longest_word_in_sentence.py

This commit is contained in:
Saurabh Mahapatra 2024-07-07 10:16:18 +05:30 committed by GitHub
parent c5cd96925e
commit 7dd05d70d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,8 +23,6 @@ def longest_word(sentence: str) -> str:
words = sentence.split()
return max(words, key=len) if words else ""
if __name__ == "__main__":
from doctest import testmod
testmod()