Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
str.isdigit solution in Speedy category for Sum Numbers by PythonWithPI
def sum_numbers(text: str) -> int:
return sum(map(int, filter(str.isdigit, text.split())))
March 8, 2020