Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
super classic inline dont look solution in Clear category for Sum Numbers by Mesure
def sum_numbers(text: str) -> int:
return sum([int(i) for i in text.split() if i.isdigit()])
June 11, 2021
Comments: