Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Sum Numbers by tokiojapan55
def sum_numbers(text: str) -> int:
return sum([int(w) for w in text.split() if w.isdigit()])
June 22, 2020