Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Fixed, after update mission description... solution in Clear category for Cut Sentence by flpo
def cut_sentence(line, length):
return line if len(line) <= length else line[:max(0, line[:length+1].rfind(' '))] + '...'
July 29, 2017
Comments: