Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Si, comprehendo! solution in Clear category for Sum Numbers by veky
sum_numbers = lambda text: sum(int(word) for word in text.split() if word.isdigit())
March 6, 2020
Comments: