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