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