Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Sum Numbers by Wiktor_Mikolajczak
def sum_numbers(text: str) -> int:
list1 = []
for i in text.split():
if i.isdigit():
list1.append(int(i))
return sum(list1)
Jan. 2, 2023