We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5cd969 commit 7dd05d7Copy full SHA for 7dd05d7
strings/longest_word_in_sentence.py
@@ -23,8 +23,6 @@ def longest_word(sentence: str) -> str:
23
words = sentence.split()
24
return max(words, key=len) if words else ""
25
26
-
27
if __name__ == "__main__":
28
from doctest import testmod
29
30
testmod()
0 commit comments