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