Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Compilation solution in Clear category for First Word by veky
import re
word = re.compile(r"[\w']+")
first_word = lambda text: word.search(text).group()
Nov. 10, 2017
Comments: