Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
CorrectSentence.c solution in Clear category for Correct Sentence by trudnopodobny
def correct_sentence(text: str) -> str:
text = text[0].upper() + text[1:]
if not text.endswith('.'):
text += '.'
return text
Oct. 4, 2018
Comments: