Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
String solution in Clear category for First Word (simplified) by Striga
def first_word(text: str) -> str:
return text.split()[0]
if __name__ == '__main__':
assert first_word("Hello world") == "Hello"
assert first_word("a word") == "a"
assert first_word("hi") == "hi"
Sept. 19, 2020