Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Nothing special solution in Clear category for Sum Numbers by Oksana_Antropova
def sum_numbers(text: str) -> int:
return sum(int(token) for token in text.split() if token.isdigit())
June 8, 2020
Comments: