Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using isdecimal solution in Clear category for Sum Numbers by erykcoapl
def sum_numbers(text: str) -> int:
return sum(int(v) for v in text.split() if v.isdecimal())
March 5, 2021